@thecb/components 2.3.0 → 3.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/.github/workflows/bump-version.yml +30 -0
  2. package/.github/workflows/create-release/build-body.sh +35 -0
  3. package/.github/workflows/create-release.yml +52 -0
  4. package/.github/workflows/disabled-workflows/publish-update.yml +73 -0
  5. package/.storybook/main.js +4 -0
  6. package/.storybook/page.js +61 -0
  7. package/.storybook/themes/apc.theme.js +1 -0
  8. package/.storybook/themes/index.js +2 -0
  9. package/.storybook/themes/sf.theme.js +1 -0
  10. package/README.md +68 -90
  11. package/dist/index.cjs.js +690 -13571
  12. package/package.json +12 -4
  13. package/rollup.config.js +0 -2
  14. package/src/components/atoms/breadcrumb/Breadcrumb.js +7 -2
  15. package/src/components/atoms/breadcrumb/Breadcrumb.theme.js +3 -1
  16. package/src/components/atoms/button-with-action/ButtonWithAction.js +6 -1
  17. package/src/components/atoms/button-with-action/ButtonWithAction.stories.js +31 -122
  18. package/src/components/atoms/button-with-action/ButtonWithAction.theme.js +20 -7
  19. package/src/components/atoms/button-with-link/ButtonWithLink.js +17 -3
  20. package/src/components/atoms/dropdown/Dropdown.js +3 -6
  21. package/src/components/atoms/dropdown/Dropdown.stories.js +70 -0
  22. package/src/components/atoms/layouts/Box.js +0 -2
  23. package/src/components/atoms/layouts/Box.styled.js +1 -17
  24. package/src/components/atoms/layouts/Motion.styled.js +2 -5
  25. package/src/components/atoms/link/ExternalLink.js +3 -3
  26. package/src/components/atoms/link/ExternalLink.styled.js +10 -3
  27. package/src/components/atoms/link/InternalLink.js +2 -4
  28. package/src/components/atoms/link/InternalLink.styled.js +16 -15
  29. package/src/components/atoms/link/Link.theme.js +7 -1
  30. package/src/components/atoms/placeholder/Placeholder.js +2 -1
  31. package/src/components/atoms/radio-button/RadioButton.stories.js +69 -0
  32. package/src/components/atoms/text/Text.js +0 -2
  33. package/src/components/atoms/text/Text.styled.js +2 -8
  34. package/src/components/atoms/toggle-switch/ToggleSwitch.js +1 -1
  35. package/src/components/atoms/toggle-switch/ToggleSwitch.stories.js +70 -0
  36. package/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.js +0 -1
  37. package/src/components/molecules/address-form/AddressForm.stories.js +21 -0
  38. package/src/components/molecules/change-password-form/ChangePasswordForm.stories.js +22 -0
  39. package/src/components/molecules/collapsible-section/CollapsibleSection.js +1 -1
  40. package/src/components/molecules/edit-name-form/EdidNameForm.stories.js +24 -0
  41. package/src/components/molecules/email-form/EmailForm.stories.js +24 -0
  42. package/src/components/molecules/forgot-password-form/ForgotPasswordForm.stories.js +24 -0
  43. package/src/components/molecules/login-form/LoginForm.stories.js +24 -0
  44. package/src/components/molecules/phone-form/PhoneForm.stories.js +24 -0
  45. package/src/components/molecules/radio-section/RadioSection.js +1 -1
  46. package/src/components/molecules/registration-form/RegistrationForm.stories.js +24 -0
  47. package/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.stories.js +11 -0
  48. package/src/components/molecules/reset-password-form/ResetPasswordForm.stories.js +24 -0
  49. package/src/components/molecules/reset-password-success/ResetPasswordSuccess.stories.js +11 -0
  50. package/src/components/molecules/tab-sidebar/TabSidebar.js +11 -5
  51. package/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.js +0 -1
  52. package/src/constants/index.js +4 -2
  53. package/src/index.js +3 -2
  54. package/src/util/index.js +4 -2
  55. package/stats.html +0 -2652
package/stats.html DELETED
@@ -1,2652 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8" />
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <meta http-equiv="X-UA-Compatible" content="ie=edge" />
7
- <title>RollUp Visualizer</title>
8
- <style>
9
- :root {
10
- --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
11
- "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
12
- "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
13
- --background-color: #f7eedf;
14
- --text-color: #333;
15
- }
16
-
17
- @media (prefers-color-scheme: dark) {
18
- :root {
19
- --background-color: #2b2d42;
20
- --text-color: #edf2f4;
21
- }
22
- }
23
- html {
24
- box-sizing: border-box;
25
- }
26
-
27
- *,
28
- *:before,
29
- *:after {
30
- box-sizing: inherit;
31
- }
32
-
33
- html {
34
- background-color: var(--background-color);
35
- color: var(--text-color);
36
- font-family: var(--font-family);
37
- }
38
-
39
- body {
40
- padding: 0;
41
- margin: 0;
42
- }
43
-
44
- html,
45
- body {
46
- height: 100%;
47
- width: 100%;
48
- overflow: hidden;
49
- }
50
-
51
- body {
52
- display: flex;
53
- flex-direction: column;
54
- }
55
-
56
- svg {
57
- vertical-align: middle;
58
- height: 100%;
59
- }
60
-
61
- main {
62
- margin: 0 auto;
63
- flex: 1;
64
- height: 100%;
65
- padding: 20px;
66
- }
67
-
68
- .tooltip {
69
- position: absolute;
70
- z-index: 1070;
71
- border: 2px solid;
72
- border-radius: 5px;
73
- padding: 5px;
74
- white-space: nowrap;
75
- font-size: 0.875rem;
76
- background-color: var(--background-color);
77
- color: var(--text-color);
78
- }
79
-
80
- .tooltip-hidden {
81
- visibility: hidden;
82
- opacity: 0;
83
- }
84
-
85
- .sidebar {
86
- position: fixed;
87
- top: 0;
88
- }
89
-
90
- .size-selectors {
91
- display: flex;
92
- flex-direction: row;
93
- font-size: 0.7rem;
94
- padding-top: 0.2rem;
95
- }
96
-
97
- .size-selector {
98
- display: flex;
99
- flex-direction: row;
100
- align-items: center;
101
- justify-content: center;
102
- margin-right: 1rem;
103
- }
104
- .size-selector input {
105
- margin: 0 0.3rem 0 0;
106
- }
107
- </style>
108
- <style>
109
- undefined
110
- </style>
111
- </head>
112
- <body>
113
- <main></main>
114
- <script>
115
- var drawChart = (function () {
116
- 'use strict';
117
-
118
- var n,u,i,t,o,r,f,e={},c=[],s=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord/i;function a(n,l){for(var u in l)n[u]=l[u];return n}function v(n){var l=n.parentNode;l&&l.removeChild(n);}function h(n,l,u){var i,t=arguments,o={};for(i in l)"key"!==i&&"ref"!==i&&(o[i]=l[i]);if(arguments.length>3)for(u=[u],i=3;i<arguments.length;i++)u.push(t[i]);if(null!=u&&(o.children=u),"function"==typeof n&&null!=n.defaultProps)for(i in n.defaultProps)void 0===o[i]&&(o[i]=n.defaultProps[i]);return p(n,o,l&&l.key,l&&l.ref)}function p(l,u,i,t){var o={type:l,props:u,key:i,ref:t,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0};return n.vnode&&n.vnode(o),o}function d(n){return n.children}function m(n,l){this.props=n,this.context=l;}function w(n,l){if(null==l)return n.__?w(n.__,n.__.__k.indexOf(n)+1):null;for(var u;l<n.__k.length;l++)if(null!=(u=n.__k[l])&&null!=u.__e)return u.__e;return "function"==typeof n.type?w(n):null}function g(n){var l,u;if(null!=(n=n.__)&&null!=n.__c){for(n.__e=n.__c.base=null,l=0;l<n.__k.length;l++)if(null!=(u=n.__k[l])&&null!=u.__e){n.__e=n.__c.base=u.__e;break}return g(n)}}function k(l){(!l.__d&&(l.__d=!0)&&u.push(l)&&!i++||o!==n.debounceRendering)&&((o=n.debounceRendering)||t)(_);}function _(){for(var n;i=u.length;)n=u.sort(function(n,l){return n.__v.__b-l.__v.__b}),u=[],n.some(function(n){var l,u,i,t,o,r;n.__d&&(o=(t=(l=n).__v).__e,(r=l.__P)&&(u=[],i=A(r,t,a({},t),l.__n,void 0!==r.ownerSVGElement,null,u,null==o?w(t):o),T(u,t),i!=o&&g(t)));});}function b(n,l,u,i,t,o,r,f,s){var a,h,p,y,d,m,g,k=u&&u.__k||c,_=k.length;if(f==e&&(f=null!=o?o[0]:_?w(u,0):null),a=0,l.__k=x(l.__k,function(u){if(null!=u){if(u.__=l,u.__b=l.__b+1,null===(p=k[a])||p&&u.key==p.key&&u.type===p.type)k[a]=void 0;else for(h=0;h<_;h++){if((p=k[h])&&u.key==p.key&&u.type===p.type){k[h]=void 0;break}p=null;}if(y=A(n,u,p=p||e,i,t,o,r,f,s),(h=u.ref)&&p.ref!=h&&(g||(g=[]),p.ref&&g.push(p.ref,null,u),g.push(h,u.__c||y,u)),null!=y){var c;if(null==m&&(m=y),void 0!==u.__d)c=u.__d,u.__d=void 0;else if(o==p||y!=f||null==y.parentNode){n:if(null==f||f.parentNode!==n)n.appendChild(y),c=null;else {for(d=f,h=0;(d=d.nextSibling)&&h<_;h+=2)if(d==y)break n;n.insertBefore(y,f),c=f;}"option"==l.type&&(n.value="");}f=void 0!==c?c:y.nextSibling,"function"==typeof l.type&&(l.__d=f);}else f&&p.__e==f&&f.parentNode!=n&&(f=w(p));}return a++,u}),l.__e=m,null!=o&&"function"!=typeof l.type)for(a=o.length;a--;)null!=o[a]&&v(o[a]);for(a=_;a--;)null!=k[a]&&D(k[a],k[a]);if(g)for(a=0;a<g.length;a++)j(g[a],g[++a],g[++a]);}function x(n,l,u){if(null==u&&(u=[]),null==n||"boolean"==typeof n)l&&u.push(l(null));else if(Array.isArray(n))for(var i=0;i<n.length;i++)x(n[i],l,u);else u.push(l?l("string"==typeof n||"number"==typeof n?p(null,n,null,null):null!=n.__e||null!=n.__c?p(n.type,n.props,n.key,null):n):n);return u}function P(n,l,u,i,t){var o;for(o in u)o in l||N(n,o,null,u[o],i);for(o in l)t&&"function"!=typeof l[o]||"value"===o||"checked"===o||u[o]===l[o]||N(n,o,l[o],u[o],i);}function C(n,l,u){"-"===l[0]?n.setProperty(l,u):n[l]="number"==typeof u&&!1===s.test(l)?u+"px":null==u?"":u;}function N(n,l,u,i,t){var o,r,f,e,c;if(t?"className"===l&&(l="class"):"class"===l&&(l="className"),"key"===l||"children"===l);else if("style"===l)if(o=n.style,"string"==typeof u)o.cssText=u;else {if("string"==typeof i&&(o.cssText="",i=null),i)for(r in i)u&&r in u||C(o,r,"");if(u)for(f in u)i&&u[f]===i[f]||C(o,f,u[f]);}else "o"===l[0]&&"n"===l[1]?(e=l!==(l=l.replace(/Capture$/,"")),c=l.toLowerCase(),l=(c in n?c:l).slice(2),u?(i||n.addEventListener(l,z,e),(n.l||(n.l={}))[l]=u):n.removeEventListener(l,z,e)):"list"!==l&&"tagName"!==l&&"form"!==l&&"type"!==l&&"size"!==l&&!t&&l in n?n[l]=null==u?"":u:"function"!=typeof u&&"dangerouslySetInnerHTML"!==l&&(l!==(l=l.replace(/^xlink:?/,""))?null==u||!1===u?n.removeAttributeNS("http://www.w3.org/1999/xlink",l.toLowerCase()):n.setAttributeNS("http://www.w3.org/1999/xlink",l.toLowerCase(),u):null==u||!1===u&&!/^ar/.test(l)?n.removeAttribute(l):n.setAttribute(l,u));}function z(l){this.l[l.type](n.event?n.event(l):l);}function A(l,u,i,t,o,r,f,e,c){var s,v,h,p,y,w,g,k,_,x,P=u.type;if(void 0!==u.constructor)return null;(s=n.__b)&&s(u);try{n:if("function"==typeof P){if(k=u.props,_=(s=P.contextType)&&t[s.__c],x=s?_?_.props.value:s.__:t,i.__c?g=(v=u.__c=i.__c).__=v.__E:("prototype"in P&&P.prototype.render?u.__c=v=new P(k,x):(u.__c=v=new m(k,x),v.constructor=P,v.render=E),_&&_.sub(v),v.props=k,v.state||(v.state={}),v.context=x,v.__n=t,h=v.__d=!0,v.__h=[]),null==v.__s&&(v.__s=v.state),null!=P.getDerivedStateFromProps&&(v.__s==v.state&&(v.__s=a({},v.__s)),a(v.__s,P.getDerivedStateFromProps(k,v.__s))),p=v.props,y=v.state,h)null==P.getDerivedStateFromProps&&null!=v.componentWillMount&&v.componentWillMount(),null!=v.componentDidMount&&v.__h.push(v.componentDidMount);else {if(null==P.getDerivedStateFromProps&&k!==p&&null!=v.componentWillReceiveProps&&v.componentWillReceiveProps(k,x),!v.__e&&null!=v.shouldComponentUpdate&&!1===v.shouldComponentUpdate(k,v.__s,x)){for(v.props=k,v.state=v.__s,v.__d=!1,v.__v=u,u.__e=i.__e,u.__k=i.__k,v.__h.length&&f.push(v),s=0;s<u.__k.length;s++)u.__k[s]&&(u.__k[s].__=u);break n}null!=v.componentWillUpdate&&v.componentWillUpdate(k,v.__s,x),null!=v.componentDidUpdate&&v.__h.push(function(){v.componentDidUpdate(p,y,w);});}v.context=x,v.props=k,v.state=v.__s,(s=n.__r)&&s(u),v.__d=!1,v.__v=u,v.__P=l,s=v.render(v.props,v.state,v.context),u.__k=null!=s&&s.type==d&&null==s.key?s.props.children:Array.isArray(s)?s:[s],null!=v.getChildContext&&(t=a(a({},t),v.getChildContext())),h||null==v.getSnapshotBeforeUpdate||(w=v.getSnapshotBeforeUpdate(p,y)),b(l,u,i,t,o,r,f,e,c),v.base=u.__e,v.__h.length&&f.push(v),g&&(v.__E=v.__=null),v.__e=!1;}else u.__e=$(i.__e,u,i,t,o,r,f,c);(s=n.diffed)&&s(u);}catch(l){n.__e(l,u,i);}return u.__e}function T(l,u){n.__c&&n.__c(u,l),l.some(function(u){try{l=u.__h,u.__h=[],l.some(function(n){n.call(u);});}catch(l){n.__e(l,u.__v);}});}function $(n,l,u,i,t,o,r,f){var s,a,v,h,p,y=u.props,d=l.props;if(t="svg"===l.type||t,null!=o)for(s=0;s<o.length;s++)if(null!=(a=o[s])&&((null===l.type?3===a.nodeType:a.localName===l.type)||n==a)){n=a,o[s]=null;break}if(null==n){if(null===l.type)return document.createTextNode(d);n=t?document.createElementNS("http://www.w3.org/2000/svg",l.type):document.createElement(l.type,d.is&&{is:d.is}),o=null;}if(null===l.type)y!==d&&n.data!=d&&(n.data=d);else if(l!==u){if(null!=o&&(o=c.slice.call(n.childNodes)),v=(y=u.props||e).dangerouslySetInnerHTML,h=d.dangerouslySetInnerHTML,!f){if(y===e)for(y={},p=0;p<n.attributes.length;p++)y[n.attributes[p].name]=n.attributes[p].value;(h||v)&&(h&&v&&h.__html==v.__html||(n.innerHTML=h&&h.__html||""));}P(n,d,y,t,f),l.__k=l.props.children,h||b(n,l,u,i,"foreignObject"!==l.type&&t,o,r,e,f),f||("value"in d&&void 0!==d.value&&d.value!==n.value&&(n.value=null==d.value?"":d.value),"checked"in d&&void 0!==d.checked&&d.checked!==n.checked&&(n.checked=d.checked));}return n}function j(l,u,i){try{"function"==typeof l?l(u):l.current=u;}catch(l){n.__e(l,i);}}function D(l,u,i){var t,o,r;if(n.unmount&&n.unmount(l),(t=l.ref)&&(t.current&&t.current!==l.__e||j(t,null,u)),i||"function"==typeof l.type||(i=null!=(o=l.__e)),l.__e=l.__d=void 0,null!=(t=l.__c)){if(t.componentWillUnmount)try{t.componentWillUnmount();}catch(l){n.__e(l,u);}t.base=t.__P=null;}if(t=l.__k)for(r=0;r<t.length;r++)t[r]&&D(t[r],u,i);null!=o&&v(o);}function E(n,l,u){return this.constructor(n,u)}function H(l,u,i){var t,o,f;n.__&&n.__(l,u),o=(t=i===r)?null:i&&i.__k||u.__k,l=h(d,null,[l]),f=[],A(u,(t?u:i||u).__k=l,o||e,e,void 0!==u.ownerSVGElement,i&&!t?[i]:o?null:c.slice.call(u.childNodes),f,i||e,t),T(f,l);}n={__e:function(n,l){for(var u,i;l=l.__;)if((u=l.__c)&&!u.__)try{if(u.constructor&&null!=u.constructor.getDerivedStateFromError&&(i=!0,u.setState(u.constructor.getDerivedStateFromError(n))),null!=u.componentDidCatch&&(i=!0,u.componentDidCatch(n)),i)return k(u.__E=u)}catch(l){n=l;}throw n}},m.prototype.setState=function(n,l){var u;u=this.__s!==this.state?this.__s:this.__s=a({},this.state),"function"==typeof n&&(n=n(u,this.props)),n&&a(u,n),null!=n&&this.__v&&(l&&this.__h.push(l),k(this));},m.prototype.forceUpdate=function(n){this.__v&&(this.__e=!0,n&&this.__h.push(n),k(this));},m.prototype.render=d,u=[],i=0,t="function"==typeof Promise?Promise.prototype.then.bind(Promise.resolve()):setTimeout,r=e,f=0;
119
-
120
- var t$1,r$1,u$1,i$1=[],o$1=n.__r,f$1=n.diffed,c$1=n.__c,e$1=n.unmount;function a$1(t){n.__h&&n.__h(r$1);var u=r$1.__H||(r$1.__H={__:[],__h:[]});return t>=u.__.length&&u.__.push({}),u.__[t]}function v$1(n){return m$1(x$1,n)}function m$1(n,u,i){var o=a$1(t$1++);return o.__c||(o.__c=r$1,o.__=[i?i(u):x$1(void 0,u),function(t){var r=n(o.__[0],t);o.__[0]!==r&&(o.__[0]=r,o.__c.setState({}));}]),o.__}function p$1(n,u){var i=a$1(t$1++);q(i.__H,u)&&(i.__=n,i.__H=u,r$1.__H.__h.push(i));}function y(n){return s$1(function(){return {current:n}},[])}function s$1(n,r){var u=a$1(t$1++);return q(u.__H,r)?(u.__H=r,u.__h=n,u.__=n()):u.__}function F(){i$1.some(function(t){if(t.__P)try{t.__H.__h.forEach(_$1),t.__H.__h.forEach(g$1),t.__H.__h=[];}catch(r){return n.__e(r,t.__v),!0}}),i$1=[];}function _$1(n){n.t&&n.t();}function g$1(n){var t=n.__();"function"==typeof t&&(n.t=t);}function q(n,t){return !n||t.some(function(t,r){return t!==n[r]})}function x$1(n,t){return "function"==typeof t?t(n):t}n.__r=function(n){o$1&&o$1(n),t$1=0,(r$1=n.__c).__H&&(r$1.__H.__h.forEach(_$1),r$1.__H.__h.forEach(g$1),r$1.__H.__h=[]);},n.diffed=function(t){f$1&&f$1(t);var r=t.__c;if(r){var o=r.__H;o&&o.__h.length&&(1!==i$1.push(r)&&u$1===n.requestAnimationFrame||((u$1=n.requestAnimationFrame)||function(n){var t,r=function(){clearTimeout(u),cancelAnimationFrame(t),setTimeout(n);},u=setTimeout(r,100);"undefined"!=typeof window&&(t=requestAnimationFrame(r));})(F));}},n.__c=function(t,r){r.some(function(t){try{t.__h.forEach(_$1),t.__h=t.__h.filter(function(n){return !n.__||g$1(n)});}catch(u){r.some(function(n){n.__h&&(n.__h=[]);}),r=[],n.__e(u,t.__v);}}),c$1&&c$1(t,r);},n.unmount=function(t){e$1&&e$1(t);var r=t.__c;if(r){var u=r.__H;if(u)try{u.__.forEach(function(n){return n.t&&n.t()});}catch(t){n.__e(t,r.__v);}}};
121
-
122
- var n$1=function(t,s,r,e){var u;s[0]=0;for(var h=1;h<s.length;h++){var p=s[h++],a=s[h]?(s[0]|=p?1:2,r[s[h++]]):s[++h];3===p?e[0]=a:4===p?e[1]=Object.assign(e[1]||{},a):5===p?(e[1]=e[1]||{})[s[++h]]=a:6===p?e[1][s[++h]]+=a+"":p?(u=t.apply(a,n$1(t,a,r,["",null])),e.push(u),a[0]?s[0]|=2:(s[h-2]=0,s[h]=u)):e.push(a);}return e},t$2=new Map;function e$2(s){var r=t$2.get(this);return r||(r=new Map,t$2.set(this,r)),(r=n$1(this,r.get(s)||(r.set(s,r=function(n){for(var t,s,r=1,e="",u="",h=[0],p=function(n){1===r&&(n||(e=e.replace(/^\s*\n\s*|\s*\n\s*$/g,"")))?h.push(0,n,e):3===r&&(n||e)?(h.push(3,n,e),r=2):2===r&&"..."===e&&n?h.push(4,n,0):2===r&&e&&!n?h.push(5,0,!0,e):r>=5&&((e||!n&&5===r)&&(h.push(r,0,e,s),r=6),n&&(h.push(r,n,0,s),r=6)),e="";},a=0;a<n.length;a++){a&&(1===r&&p(),p(a));for(var l=0;l<n[a].length;l++)t=n[a][l],1===r?"<"===t?(p(),h=[h],r=3):e+=t:4===r?"--"===e&&">"===t?(r=1,e=""):e=t+e[0]:u?t===u?u="":e+=t:'"'===t||"'"===t?u=t:">"===t?(p(),r=1):r&&("="===t?(r=5,s=e,e=""):"/"===t&&(r<5||">"===n[a][l+1])?(p(),3===r&&(h=h[0]),r=h,(h=h[0]).push(2,0,r),r=0):" "===t||"\t"===t||"\n"===t||"\r"===t?(p(),r=2):e+=t),3===r&&"!--"===e&&(r=4,h=h[0]);}return p(),h}(s)),r),arguments,[])).length>1?r:r[0]}
123
-
124
- var m$2=e$2.bind(h);
125
-
126
- function ascending(a, b) {
127
- return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;
128
- }
129
-
130
- function bisector(compare) {
131
- if (compare.length === 1) compare = ascendingComparator(compare);
132
- return {
133
- left: function(a, x, lo, hi) {
134
- if (lo == null) lo = 0;
135
- if (hi == null) hi = a.length;
136
- while (lo < hi) {
137
- var mid = lo + hi >>> 1;
138
- if (compare(a[mid], x) < 0) lo = mid + 1;
139
- else hi = mid;
140
- }
141
- return lo;
142
- },
143
- right: function(a, x, lo, hi) {
144
- if (lo == null) lo = 0;
145
- if (hi == null) hi = a.length;
146
- while (lo < hi) {
147
- var mid = lo + hi >>> 1;
148
- if (compare(a[mid], x) > 0) hi = mid;
149
- else lo = mid + 1;
150
- }
151
- return lo;
152
- }
153
- };
154
- }
155
-
156
- function ascendingComparator(f) {
157
- return function(d, x) {
158
- return ascending(f(d), x);
159
- };
160
- }
161
-
162
- var ascendingBisect = bisector(ascending);
163
- var bisectRight = ascendingBisect.right;
164
-
165
- function identity(x) {
166
- return x;
167
- }
168
-
169
- function group(values, ...keys) {
170
- return nest(values, identity, identity, keys);
171
- }
172
-
173
- function nest(values, map, reduce, keys) {
174
- return (function regroup(values, i) {
175
- if (i >= keys.length) return reduce(values);
176
- const groups = new Map();
177
- const keyof = keys[i++];
178
- let index = -1;
179
- for (const value of values) {
180
- const key = keyof(value, ++index, values);
181
- const group = groups.get(key);
182
- if (group) group.push(value);
183
- else groups.set(key, [value]);
184
- }
185
- for (const [key, values] of groups) {
186
- groups.set(key, regroup(values, i));
187
- }
188
- return map(groups);
189
- })(values, 0);
190
- }
191
-
192
- var e10 = Math.sqrt(50),
193
- e5 = Math.sqrt(10),
194
- e2 = Math.sqrt(2);
195
-
196
- function ticks(start, stop, count) {
197
- var reverse,
198
- i = -1,
199
- n,
200
- ticks,
201
- step;
202
-
203
- stop = +stop, start = +start, count = +count;
204
- if (start === stop && count > 0) return [start];
205
- if (reverse = stop < start) n = start, start = stop, stop = n;
206
- if ((step = tickIncrement(start, stop, count)) === 0 || !isFinite(step)) return [];
207
-
208
- if (step > 0) {
209
- start = Math.ceil(start / step);
210
- stop = Math.floor(stop / step);
211
- ticks = new Array(n = Math.ceil(stop - start + 1));
212
- while (++i < n) ticks[i] = (start + i) * step;
213
- } else {
214
- start = Math.floor(start * step);
215
- stop = Math.ceil(stop * step);
216
- ticks = new Array(n = Math.ceil(start - stop + 1));
217
- while (++i < n) ticks[i] = (start - i) / step;
218
- }
219
-
220
- if (reverse) ticks.reverse();
221
-
222
- return ticks;
223
- }
224
-
225
- function tickIncrement(start, stop, count) {
226
- var step = (stop - start) / Math.max(0, count),
227
- power = Math.floor(Math.log(step) / Math.LN10),
228
- error = step / Math.pow(10, power);
229
- return power >= 0
230
- ? (error >= e10 ? 10 : error >= e5 ? 5 : error >= e2 ? 2 : 1) * Math.pow(10, power)
231
- : -Math.pow(10, -power) / (error >= e10 ? 10 : error >= e5 ? 5 : error >= e2 ? 2 : 1);
232
- }
233
-
234
- function tickStep(start, stop, count) {
235
- var step0 = Math.abs(stop - start) / Math.max(0, count),
236
- step1 = Math.pow(10, Math.floor(Math.log(step0) / Math.LN10)),
237
- error = step0 / step1;
238
- if (error >= e10) step1 *= 10;
239
- else if (error >= e5) step1 *= 5;
240
- else if (error >= e2) step1 *= 2;
241
- return stop < start ? -step1 : step1;
242
- }
243
-
244
- function count(node) {
245
- var sum = 0,
246
- children = node.children,
247
- i = children && children.length;
248
- if (!i) sum = 1;
249
- else while (--i >= 0) sum += children[i].value;
250
- node.value = sum;
251
- }
252
-
253
- function node_count() {
254
- return this.eachAfter(count);
255
- }
256
-
257
- function node_each(callback) {
258
- var node = this, current, next = [node], children, i, n;
259
- do {
260
- current = next.reverse(), next = [];
261
- while (node = current.pop()) {
262
- callback(node), children = node.children;
263
- if (children) for (i = 0, n = children.length; i < n; ++i) {
264
- next.push(children[i]);
265
- }
266
- }
267
- } while (next.length);
268
- return this;
269
- }
270
-
271
- function node_eachBefore(callback) {
272
- var node = this, nodes = [node], children, i;
273
- while (node = nodes.pop()) {
274
- callback(node), children = node.children;
275
- if (children) for (i = children.length - 1; i >= 0; --i) {
276
- nodes.push(children[i]);
277
- }
278
- }
279
- return this;
280
- }
281
-
282
- function node_eachAfter(callback) {
283
- var node = this, nodes = [node], next = [], children, i, n;
284
- while (node = nodes.pop()) {
285
- next.push(node), children = node.children;
286
- if (children) for (i = 0, n = children.length; i < n; ++i) {
287
- nodes.push(children[i]);
288
- }
289
- }
290
- while (node = next.pop()) {
291
- callback(node);
292
- }
293
- return this;
294
- }
295
-
296
- function node_sum(value) {
297
- return this.eachAfter(function(node) {
298
- var sum = +value(node.data) || 0,
299
- children = node.children,
300
- i = children && children.length;
301
- while (--i >= 0) sum += children[i].value;
302
- node.value = sum;
303
- });
304
- }
305
-
306
- function node_sort(compare) {
307
- return this.eachBefore(function(node) {
308
- if (node.children) {
309
- node.children.sort(compare);
310
- }
311
- });
312
- }
313
-
314
- function node_path(end) {
315
- var start = this,
316
- ancestor = leastCommonAncestor(start, end),
317
- nodes = [start];
318
- while (start !== ancestor) {
319
- start = start.parent;
320
- nodes.push(start);
321
- }
322
- var k = nodes.length;
323
- while (end !== ancestor) {
324
- nodes.splice(k, 0, end);
325
- end = end.parent;
326
- }
327
- return nodes;
328
- }
329
-
330
- function leastCommonAncestor(a, b) {
331
- if (a === b) return a;
332
- var aNodes = a.ancestors(),
333
- bNodes = b.ancestors(),
334
- c = null;
335
- a = aNodes.pop();
336
- b = bNodes.pop();
337
- while (a === b) {
338
- c = a;
339
- a = aNodes.pop();
340
- b = bNodes.pop();
341
- }
342
- return c;
343
- }
344
-
345
- function node_ancestors() {
346
- var node = this, nodes = [node];
347
- while (node = node.parent) {
348
- nodes.push(node);
349
- }
350
- return nodes;
351
- }
352
-
353
- function node_descendants() {
354
- var nodes = [];
355
- this.each(function(node) {
356
- nodes.push(node);
357
- });
358
- return nodes;
359
- }
360
-
361
- function node_leaves() {
362
- var leaves = [];
363
- this.eachBefore(function(node) {
364
- if (!node.children) {
365
- leaves.push(node);
366
- }
367
- });
368
- return leaves;
369
- }
370
-
371
- function node_links() {
372
- var root = this, links = [];
373
- root.each(function(node) {
374
- if (node !== root) { // Don’t include the root’s parent, if any.
375
- links.push({source: node.parent, target: node});
376
- }
377
- });
378
- return links;
379
- }
380
-
381
- function hierarchy(data, children) {
382
- var root = new Node(data),
383
- valued = +data.value && (root.value = data.value),
384
- node,
385
- nodes = [root],
386
- child,
387
- childs,
388
- i,
389
- n;
390
-
391
- if (children == null) children = defaultChildren;
392
-
393
- while (node = nodes.pop()) {
394
- if (valued) node.value = +node.data.value;
395
- if ((childs = children(node.data)) && (n = childs.length)) {
396
- node.children = new Array(n);
397
- for (i = n - 1; i >= 0; --i) {
398
- nodes.push(child = node.children[i] = new Node(childs[i]));
399
- child.parent = node;
400
- child.depth = node.depth + 1;
401
- }
402
- }
403
- }
404
-
405
- return root.eachBefore(computeHeight);
406
- }
407
-
408
- function node_copy() {
409
- return hierarchy(this).eachBefore(copyData);
410
- }
411
-
412
- function defaultChildren(d) {
413
- return d.children;
414
- }
415
-
416
- function copyData(node) {
417
- node.data = node.data.data;
418
- }
419
-
420
- function computeHeight(node) {
421
- var height = 0;
422
- do node.height = height;
423
- while ((node = node.parent) && (node.height < ++height));
424
- }
425
-
426
- function Node(data) {
427
- this.data = data;
428
- this.depth =
429
- this.height = 0;
430
- this.parent = null;
431
- }
432
-
433
- Node.prototype = hierarchy.prototype = {
434
- constructor: Node,
435
- count: node_count,
436
- each: node_each,
437
- eachAfter: node_eachAfter,
438
- eachBefore: node_eachBefore,
439
- sum: node_sum,
440
- sort: node_sort,
441
- path: node_path,
442
- ancestors: node_ancestors,
443
- descendants: node_descendants,
444
- leaves: node_leaves,
445
- links: node_links,
446
- copy: node_copy
447
- };
448
-
449
- function required(f) {
450
- if (typeof f !== "function") throw new Error;
451
- return f;
452
- }
453
-
454
- function constantZero() {
455
- return 0;
456
- }
457
-
458
- function constant(x) {
459
- return function() {
460
- return x;
461
- };
462
- }
463
-
464
- function roundNode(node) {
465
- node.x0 = Math.round(node.x0);
466
- node.y0 = Math.round(node.y0);
467
- node.x1 = Math.round(node.x1);
468
- node.y1 = Math.round(node.y1);
469
- }
470
-
471
- function treemapDice(parent, x0, y0, x1, y1) {
472
- var nodes = parent.children,
473
- node,
474
- i = -1,
475
- n = nodes.length,
476
- k = parent.value && (x1 - x0) / parent.value;
477
-
478
- while (++i < n) {
479
- node = nodes[i], node.y0 = y0, node.y1 = y1;
480
- node.x0 = x0, node.x1 = x0 += node.value * k;
481
- }
482
- }
483
-
484
- function treemapSlice(parent, x0, y0, x1, y1) {
485
- var nodes = parent.children,
486
- node,
487
- i = -1,
488
- n = nodes.length,
489
- k = parent.value && (y1 - y0) / parent.value;
490
-
491
- while (++i < n) {
492
- node = nodes[i], node.x0 = x0, node.x1 = x1;
493
- node.y0 = y0, node.y1 = y0 += node.value * k;
494
- }
495
- }
496
-
497
- var phi = (1 + Math.sqrt(5)) / 2;
498
-
499
- function squarifyRatio(ratio, parent, x0, y0, x1, y1) {
500
- var rows = [],
501
- nodes = parent.children,
502
- row,
503
- nodeValue,
504
- i0 = 0,
505
- i1 = 0,
506
- n = nodes.length,
507
- dx, dy,
508
- value = parent.value,
509
- sumValue,
510
- minValue,
511
- maxValue,
512
- newRatio,
513
- minRatio,
514
- alpha,
515
- beta;
516
-
517
- while (i0 < n) {
518
- dx = x1 - x0, dy = y1 - y0;
519
-
520
- // Find the next non-empty node.
521
- do sumValue = nodes[i1++].value; while (!sumValue && i1 < n);
522
- minValue = maxValue = sumValue;
523
- alpha = Math.max(dy / dx, dx / dy) / (value * ratio);
524
- beta = sumValue * sumValue * alpha;
525
- minRatio = Math.max(maxValue / beta, beta / minValue);
526
-
527
- // Keep adding nodes while the aspect ratio maintains or improves.
528
- for (; i1 < n; ++i1) {
529
- sumValue += nodeValue = nodes[i1].value;
530
- if (nodeValue < minValue) minValue = nodeValue;
531
- if (nodeValue > maxValue) maxValue = nodeValue;
532
- beta = sumValue * sumValue * alpha;
533
- newRatio = Math.max(maxValue / beta, beta / minValue);
534
- if (newRatio > minRatio) { sumValue -= nodeValue; break; }
535
- minRatio = newRatio;
536
- }
537
-
538
- // Position and record the row orientation.
539
- rows.push(row = {value: sumValue, dice: dx < dy, children: nodes.slice(i0, i1)});
540
- if (row.dice) treemapDice(row, x0, y0, x1, value ? y0 += dy * sumValue / value : y1);
541
- else treemapSlice(row, x0, y0, value ? x0 += dx * sumValue / value : x1, y1);
542
- value -= sumValue, i0 = i1;
543
- }
544
-
545
- return rows;
546
- }
547
-
548
- var squarify = (function custom(ratio) {
549
-
550
- function squarify(parent, x0, y0, x1, y1) {
551
- squarifyRatio(ratio, parent, x0, y0, x1, y1);
552
- }
553
-
554
- squarify.ratio = function(x) {
555
- return custom((x = +x) > 1 ? x : 1);
556
- };
557
-
558
- return squarify;
559
- })(phi);
560
-
561
- function d3treemap() {
562
- var tile = squarify,
563
- round = false,
564
- dx = 1,
565
- dy = 1,
566
- paddingStack = [0],
567
- paddingInner = constantZero,
568
- paddingTop = constantZero,
569
- paddingRight = constantZero,
570
- paddingBottom = constantZero,
571
- paddingLeft = constantZero;
572
-
573
- function treemap(root) {
574
- root.x0 =
575
- root.y0 = 0;
576
- root.x1 = dx;
577
- root.y1 = dy;
578
- root.eachBefore(positionNode);
579
- paddingStack = [0];
580
- if (round) root.eachBefore(roundNode);
581
- return root;
582
- }
583
-
584
- function positionNode(node) {
585
- var p = paddingStack[node.depth],
586
- x0 = node.x0 + p,
587
- y0 = node.y0 + p,
588
- x1 = node.x1 - p,
589
- y1 = node.y1 - p;
590
- if (x1 < x0) x0 = x1 = (x0 + x1) / 2;
591
- if (y1 < y0) y0 = y1 = (y0 + y1) / 2;
592
- node.x0 = x0;
593
- node.y0 = y0;
594
- node.x1 = x1;
595
- node.y1 = y1;
596
- if (node.children) {
597
- p = paddingStack[node.depth + 1] = paddingInner(node) / 2;
598
- x0 += paddingLeft(node) - p;
599
- y0 += paddingTop(node) - p;
600
- x1 -= paddingRight(node) - p;
601
- y1 -= paddingBottom(node) - p;
602
- if (x1 < x0) x0 = x1 = (x0 + x1) / 2;
603
- if (y1 < y0) y0 = y1 = (y0 + y1) / 2;
604
- tile(node, x0, y0, x1, y1);
605
- }
606
- }
607
-
608
- treemap.round = function(x) {
609
- return arguments.length ? (round = !!x, treemap) : round;
610
- };
611
-
612
- treemap.size = function(x) {
613
- return arguments.length ? (dx = +x[0], dy = +x[1], treemap) : [dx, dy];
614
- };
615
-
616
- treemap.tile = function(x) {
617
- return arguments.length ? (tile = required(x), treemap) : tile;
618
- };
619
-
620
- treemap.padding = function(x) {
621
- return arguments.length ? treemap.paddingInner(x).paddingOuter(x) : treemap.paddingInner();
622
- };
623
-
624
- treemap.paddingInner = function(x) {
625
- return arguments.length ? (paddingInner = typeof x === "function" ? x : constant(+x), treemap) : paddingInner;
626
- };
627
-
628
- treemap.paddingOuter = function(x) {
629
- return arguments.length ? treemap.paddingTop(x).paddingRight(x).paddingBottom(x).paddingLeft(x) : treemap.paddingTop();
630
- };
631
-
632
- treemap.paddingTop = function(x) {
633
- return arguments.length ? (paddingTop = typeof x === "function" ? x : constant(+x), treemap) : paddingTop;
634
- };
635
-
636
- treemap.paddingRight = function(x) {
637
- return arguments.length ? (paddingRight = typeof x === "function" ? x : constant(+x), treemap) : paddingRight;
638
- };
639
-
640
- treemap.paddingBottom = function(x) {
641
- return arguments.length ? (paddingBottom = typeof x === "function" ? x : constant(+x), treemap) : paddingBottom;
642
- };
643
-
644
- treemap.paddingLeft = function(x) {
645
- return arguments.length ? (paddingLeft = typeof x === "function" ? x : constant(+x), treemap) : paddingLeft;
646
- };
647
-
648
- return treemap;
649
- }
650
-
651
- var treemapResquarify = (function custom(ratio) {
652
-
653
- function resquarify(parent, x0, y0, x1, y1) {
654
- if ((rows = parent._squarify) && (rows.ratio === ratio)) {
655
- var rows,
656
- row,
657
- nodes,
658
- i,
659
- j = -1,
660
- n,
661
- m = rows.length,
662
- value = parent.value;
663
-
664
- while (++j < m) {
665
- row = rows[j], nodes = row.children;
666
- for (i = row.value = 0, n = nodes.length; i < n; ++i) row.value += nodes[i].value;
667
- if (row.dice) treemapDice(row, x0, y0, x1, y0 += (y1 - y0) * row.value / value);
668
- else treemapSlice(row, x0, y0, x0 += (x1 - x0) * row.value / value, y1);
669
- value -= row.value;
670
- }
671
- } else {
672
- parent._squarify = rows = squarifyRatio(ratio, parent, x0, y0, x1, y1);
673
- rows.ratio = ratio;
674
- }
675
- }
676
-
677
- resquarify.ratio = function(x) {
678
- return custom((x = +x) > 1 ? x : 1);
679
- };
680
-
681
- return resquarify;
682
- })(phi);
683
-
684
- /*!
685
- * bytes
686
- * Copyright(c) 2012-2014 TJ Holowaychuk
687
- * Copyright(c) 2015 Jed Watson
688
- * MIT Licensed
689
- */
690
- var format_1 = format;
691
-
692
- /**
693
- * Module variables.
694
- * @private
695
- */
696
-
697
- var formatThousandsRegExp = /\B(?=(\d{3})+(?!\d))/g;
698
-
699
- var formatDecimalsRegExp = /(?:\.0*|(\.[^0]+)0+)$/;
700
-
701
- var map = {
702
- b: 1,
703
- kb: 1 << 10,
704
- mb: 1 << 20,
705
- gb: 1 << 30,
706
- tb: Math.pow(1024, 4),
707
- pb: Math.pow(1024, 5),
708
- };
709
-
710
- /**
711
- * Format the given value in bytes into a string.
712
- *
713
- * If the value is negative, it is kept as such. If it is a float,
714
- * it is rounded.
715
- *
716
- * @param {number} value
717
- * @param {object} [options]
718
- * @param {number} [options.decimalPlaces=2]
719
- * @param {number} [options.fixedDecimals=false]
720
- * @param {string} [options.thousandsSeparator=]
721
- * @param {string} [options.unit=]
722
- * @param {string} [options.unitSeparator=]
723
- *
724
- * @returns {string|null}
725
- * @public
726
- */
727
-
728
- function format(value, options) {
729
- if (!Number.isFinite(value)) {
730
- return null;
731
- }
732
-
733
- var mag = Math.abs(value);
734
- var thousandsSeparator = (options && options.thousandsSeparator) || '';
735
- var unitSeparator = (options && options.unitSeparator) || '';
736
- var decimalPlaces = (options && options.decimalPlaces !== undefined) ? options.decimalPlaces : 2;
737
- var fixedDecimals = Boolean(options && options.fixedDecimals);
738
- var unit = (options && options.unit) || '';
739
-
740
- if (!unit || !map[unit.toLowerCase()]) {
741
- if (mag >= map.pb) {
742
- unit = 'PB';
743
- } else if (mag >= map.tb) {
744
- unit = 'TB';
745
- } else if (mag >= map.gb) {
746
- unit = 'GB';
747
- } else if (mag >= map.mb) {
748
- unit = 'MB';
749
- } else if (mag >= map.kb) {
750
- unit = 'KB';
751
- } else {
752
- unit = 'B';
753
- }
754
- }
755
-
756
- var val = value / map[unit.toLowerCase()];
757
- var str = val.toFixed(decimalPlaces);
758
-
759
- if (!fixedDecimals) {
760
- str = str.replace(formatDecimalsRegExp, '$1');
761
- }
762
-
763
- if (thousandsSeparator) {
764
- str = str.replace(formatThousandsRegExp, thousandsSeparator);
765
- }
766
-
767
- return str + unitSeparator + unit;
768
- }
769
-
770
- let count$1 = 0;
771
-
772
- class Id {
773
- constructor(id) {
774
- this._id = id;
775
- this._href = createUrl({ hash: id }).href;
776
- }
777
-
778
- get id() {
779
- return this._id;
780
- }
781
-
782
- get href() {
783
- return this._href;
784
- }
785
-
786
- toString() {
787
- return `url(${this.href})`;
788
- }
789
- }
790
-
791
- function uid (name) {
792
- count$1 += 1;
793
- const id = ["O", name, count$1].filter(Boolean).join("-");
794
- return new Id(id);
795
- }
796
-
797
- function createUrl(options = {}) {
798
- const url = new URL(window.location);
799
- return Object.assign(url, options);
800
- }
801
-
802
- function initRange(domain, range) {
803
- switch (arguments.length) {
804
- case 0: break;
805
- case 1: this.range(domain); break;
806
- default: this.range(range).domain(domain); break;
807
- }
808
- return this;
809
- }
810
-
811
- function initInterpolator(domain, interpolator) {
812
- switch (arguments.length) {
813
- case 0: break;
814
- case 1: {
815
- if (typeof domain === "function") this.interpolator(domain);
816
- else this.range(domain);
817
- break;
818
- }
819
- default: {
820
- this.domain(domain);
821
- if (typeof interpolator === "function") this.interpolator(interpolator);
822
- else this.range(interpolator);
823
- break;
824
- }
825
- }
826
- return this;
827
- }
828
-
829
- function define(constructor, factory, prototype) {
830
- constructor.prototype = factory.prototype = prototype;
831
- prototype.constructor = constructor;
832
- }
833
-
834
- function extend(parent, definition) {
835
- var prototype = Object.create(parent.prototype);
836
- for (var key in definition) prototype[key] = definition[key];
837
- return prototype;
838
- }
839
-
840
- function Color() {}
841
-
842
- var darker = 0.7;
843
- var brighter = 1 / darker;
844
-
845
- var reI = "\\s*([+-]?\\d+)\\s*",
846
- reN = "\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",
847
- reP = "\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",
848
- reHex = /^#([0-9a-f]{3,8})$/,
849
- reRgbInteger = new RegExp("^rgb\\(" + [reI, reI, reI] + "\\)$"),
850
- reRgbPercent = new RegExp("^rgb\\(" + [reP, reP, reP] + "\\)$"),
851
- reRgbaInteger = new RegExp("^rgba\\(" + [reI, reI, reI, reN] + "\\)$"),
852
- reRgbaPercent = new RegExp("^rgba\\(" + [reP, reP, reP, reN] + "\\)$"),
853
- reHslPercent = new RegExp("^hsl\\(" + [reN, reP, reP] + "\\)$"),
854
- reHslaPercent = new RegExp("^hsla\\(" + [reN, reP, reP, reN] + "\\)$");
855
-
856
- var named = {
857
- aliceblue: 0xf0f8ff,
858
- antiquewhite: 0xfaebd7,
859
- aqua: 0x00ffff,
860
- aquamarine: 0x7fffd4,
861
- azure: 0xf0ffff,
862
- beige: 0xf5f5dc,
863
- bisque: 0xffe4c4,
864
- black: 0x000000,
865
- blanchedalmond: 0xffebcd,
866
- blue: 0x0000ff,
867
- blueviolet: 0x8a2be2,
868
- brown: 0xa52a2a,
869
- burlywood: 0xdeb887,
870
- cadetblue: 0x5f9ea0,
871
- chartreuse: 0x7fff00,
872
- chocolate: 0xd2691e,
873
- coral: 0xff7f50,
874
- cornflowerblue: 0x6495ed,
875
- cornsilk: 0xfff8dc,
876
- crimson: 0xdc143c,
877
- cyan: 0x00ffff,
878
- darkblue: 0x00008b,
879
- darkcyan: 0x008b8b,
880
- darkgoldenrod: 0xb8860b,
881
- darkgray: 0xa9a9a9,
882
- darkgreen: 0x006400,
883
- darkgrey: 0xa9a9a9,
884
- darkkhaki: 0xbdb76b,
885
- darkmagenta: 0x8b008b,
886
- darkolivegreen: 0x556b2f,
887
- darkorange: 0xff8c00,
888
- darkorchid: 0x9932cc,
889
- darkred: 0x8b0000,
890
- darksalmon: 0xe9967a,
891
- darkseagreen: 0x8fbc8f,
892
- darkslateblue: 0x483d8b,
893
- darkslategray: 0x2f4f4f,
894
- darkslategrey: 0x2f4f4f,
895
- darkturquoise: 0x00ced1,
896
- darkviolet: 0x9400d3,
897
- deeppink: 0xff1493,
898
- deepskyblue: 0x00bfff,
899
- dimgray: 0x696969,
900
- dimgrey: 0x696969,
901
- dodgerblue: 0x1e90ff,
902
- firebrick: 0xb22222,
903
- floralwhite: 0xfffaf0,
904
- forestgreen: 0x228b22,
905
- fuchsia: 0xff00ff,
906
- gainsboro: 0xdcdcdc,
907
- ghostwhite: 0xf8f8ff,
908
- gold: 0xffd700,
909
- goldenrod: 0xdaa520,
910
- gray: 0x808080,
911
- green: 0x008000,
912
- greenyellow: 0xadff2f,
913
- grey: 0x808080,
914
- honeydew: 0xf0fff0,
915
- hotpink: 0xff69b4,
916
- indianred: 0xcd5c5c,
917
- indigo: 0x4b0082,
918
- ivory: 0xfffff0,
919
- khaki: 0xf0e68c,
920
- lavender: 0xe6e6fa,
921
- lavenderblush: 0xfff0f5,
922
- lawngreen: 0x7cfc00,
923
- lemonchiffon: 0xfffacd,
924
- lightblue: 0xadd8e6,
925
- lightcoral: 0xf08080,
926
- lightcyan: 0xe0ffff,
927
- lightgoldenrodyellow: 0xfafad2,
928
- lightgray: 0xd3d3d3,
929
- lightgreen: 0x90ee90,
930
- lightgrey: 0xd3d3d3,
931
- lightpink: 0xffb6c1,
932
- lightsalmon: 0xffa07a,
933
- lightseagreen: 0x20b2aa,
934
- lightskyblue: 0x87cefa,
935
- lightslategray: 0x778899,
936
- lightslategrey: 0x778899,
937
- lightsteelblue: 0xb0c4de,
938
- lightyellow: 0xffffe0,
939
- lime: 0x00ff00,
940
- limegreen: 0x32cd32,
941
- linen: 0xfaf0e6,
942
- magenta: 0xff00ff,
943
- maroon: 0x800000,
944
- mediumaquamarine: 0x66cdaa,
945
- mediumblue: 0x0000cd,
946
- mediumorchid: 0xba55d3,
947
- mediumpurple: 0x9370db,
948
- mediumseagreen: 0x3cb371,
949
- mediumslateblue: 0x7b68ee,
950
- mediumspringgreen: 0x00fa9a,
951
- mediumturquoise: 0x48d1cc,
952
- mediumvioletred: 0xc71585,
953
- midnightblue: 0x191970,
954
- mintcream: 0xf5fffa,
955
- mistyrose: 0xffe4e1,
956
- moccasin: 0xffe4b5,
957
- navajowhite: 0xffdead,
958
- navy: 0x000080,
959
- oldlace: 0xfdf5e6,
960
- olive: 0x808000,
961
- olivedrab: 0x6b8e23,
962
- orange: 0xffa500,
963
- orangered: 0xff4500,
964
- orchid: 0xda70d6,
965
- palegoldenrod: 0xeee8aa,
966
- palegreen: 0x98fb98,
967
- paleturquoise: 0xafeeee,
968
- palevioletred: 0xdb7093,
969
- papayawhip: 0xffefd5,
970
- peachpuff: 0xffdab9,
971
- peru: 0xcd853f,
972
- pink: 0xffc0cb,
973
- plum: 0xdda0dd,
974
- powderblue: 0xb0e0e6,
975
- purple: 0x800080,
976
- rebeccapurple: 0x663399,
977
- red: 0xff0000,
978
- rosybrown: 0xbc8f8f,
979
- royalblue: 0x4169e1,
980
- saddlebrown: 0x8b4513,
981
- salmon: 0xfa8072,
982
- sandybrown: 0xf4a460,
983
- seagreen: 0x2e8b57,
984
- seashell: 0xfff5ee,
985
- sienna: 0xa0522d,
986
- silver: 0xc0c0c0,
987
- skyblue: 0x87ceeb,
988
- slateblue: 0x6a5acd,
989
- slategray: 0x708090,
990
- slategrey: 0x708090,
991
- snow: 0xfffafa,
992
- springgreen: 0x00ff7f,
993
- steelblue: 0x4682b4,
994
- tan: 0xd2b48c,
995
- teal: 0x008080,
996
- thistle: 0xd8bfd8,
997
- tomato: 0xff6347,
998
- turquoise: 0x40e0d0,
999
- violet: 0xee82ee,
1000
- wheat: 0xf5deb3,
1001
- white: 0xffffff,
1002
- whitesmoke: 0xf5f5f5,
1003
- yellow: 0xffff00,
1004
- yellowgreen: 0x9acd32
1005
- };
1006
-
1007
- define(Color, color, {
1008
- copy: function(channels) {
1009
- return Object.assign(new this.constructor, this, channels);
1010
- },
1011
- displayable: function() {
1012
- return this.rgb().displayable();
1013
- },
1014
- hex: color_formatHex, // Deprecated! Use color.formatHex.
1015
- formatHex: color_formatHex,
1016
- formatHsl: color_formatHsl,
1017
- formatRgb: color_formatRgb,
1018
- toString: color_formatRgb
1019
- });
1020
-
1021
- function color_formatHex() {
1022
- return this.rgb().formatHex();
1023
- }
1024
-
1025
- function color_formatHsl() {
1026
- return hslConvert(this).formatHsl();
1027
- }
1028
-
1029
- function color_formatRgb() {
1030
- return this.rgb().formatRgb();
1031
- }
1032
-
1033
- function color(format) {
1034
- var m, l;
1035
- format = (format + "").trim().toLowerCase();
1036
- return (m = reHex.exec(format)) ? (l = m[1].length, m = parseInt(m[1], 16), l === 6 ? rgbn(m) // #ff0000
1037
- : l === 3 ? new Rgb((m >> 8 & 0xf) | (m >> 4 & 0xf0), (m >> 4 & 0xf) | (m & 0xf0), ((m & 0xf) << 4) | (m & 0xf), 1) // #f00
1038
- : l === 8 ? new Rgb(m >> 24 & 0xff, m >> 16 & 0xff, m >> 8 & 0xff, (m & 0xff) / 0xff) // #ff000000
1039
- : l === 4 ? new Rgb((m >> 12 & 0xf) | (m >> 8 & 0xf0), (m >> 8 & 0xf) | (m >> 4 & 0xf0), (m >> 4 & 0xf) | (m & 0xf0), (((m & 0xf) << 4) | (m & 0xf)) / 0xff) // #f000
1040
- : null) // invalid hex
1041
- : (m = reRgbInteger.exec(format)) ? new Rgb(m[1], m[2], m[3], 1) // rgb(255, 0, 0)
1042
- : (m = reRgbPercent.exec(format)) ? new Rgb(m[1] * 255 / 100, m[2] * 255 / 100, m[3] * 255 / 100, 1) // rgb(100%, 0%, 0%)
1043
- : (m = reRgbaInteger.exec(format)) ? rgba(m[1], m[2], m[3], m[4]) // rgba(255, 0, 0, 1)
1044
- : (m = reRgbaPercent.exec(format)) ? rgba(m[1] * 255 / 100, m[2] * 255 / 100, m[3] * 255 / 100, m[4]) // rgb(100%, 0%, 0%, 1)
1045
- : (m = reHslPercent.exec(format)) ? hsla(m[1], m[2] / 100, m[3] / 100, 1) // hsl(120, 50%, 50%)
1046
- : (m = reHslaPercent.exec(format)) ? hsla(m[1], m[2] / 100, m[3] / 100, m[4]) // hsla(120, 50%, 50%, 1)
1047
- : named.hasOwnProperty(format) ? rgbn(named[format]) // eslint-disable-line no-prototype-builtins
1048
- : format === "transparent" ? new Rgb(NaN, NaN, NaN, 0)
1049
- : null;
1050
- }
1051
-
1052
- function rgbn(n) {
1053
- return new Rgb(n >> 16 & 0xff, n >> 8 & 0xff, n & 0xff, 1);
1054
- }
1055
-
1056
- function rgba(r, g, b, a) {
1057
- if (a <= 0) r = g = b = NaN;
1058
- return new Rgb(r, g, b, a);
1059
- }
1060
-
1061
- function rgbConvert(o) {
1062
- if (!(o instanceof Color)) o = color(o);
1063
- if (!o) return new Rgb;
1064
- o = o.rgb();
1065
- return new Rgb(o.r, o.g, o.b, o.opacity);
1066
- }
1067
-
1068
- function rgb(r, g, b, opacity) {
1069
- return arguments.length === 1 ? rgbConvert(r) : new Rgb(r, g, b, opacity == null ? 1 : opacity);
1070
- }
1071
-
1072
- function Rgb(r, g, b, opacity) {
1073
- this.r = +r;
1074
- this.g = +g;
1075
- this.b = +b;
1076
- this.opacity = +opacity;
1077
- }
1078
-
1079
- define(Rgb, rgb, extend(Color, {
1080
- brighter: function(k) {
1081
- k = k == null ? brighter : Math.pow(brighter, k);
1082
- return new Rgb(this.r * k, this.g * k, this.b * k, this.opacity);
1083
- },
1084
- darker: function(k) {
1085
- k = k == null ? darker : Math.pow(darker, k);
1086
- return new Rgb(this.r * k, this.g * k, this.b * k, this.opacity);
1087
- },
1088
- rgb: function() {
1089
- return this;
1090
- },
1091
- displayable: function() {
1092
- return (-0.5 <= this.r && this.r < 255.5)
1093
- && (-0.5 <= this.g && this.g < 255.5)
1094
- && (-0.5 <= this.b && this.b < 255.5)
1095
- && (0 <= this.opacity && this.opacity <= 1);
1096
- },
1097
- hex: rgb_formatHex, // Deprecated! Use color.formatHex.
1098
- formatHex: rgb_formatHex,
1099
- formatRgb: rgb_formatRgb,
1100
- toString: rgb_formatRgb
1101
- }));
1102
-
1103
- function rgb_formatHex() {
1104
- return "#" + hex(this.r) + hex(this.g) + hex(this.b);
1105
- }
1106
-
1107
- function rgb_formatRgb() {
1108
- var a = this.opacity; a = isNaN(a) ? 1 : Math.max(0, Math.min(1, a));
1109
- return (a === 1 ? "rgb(" : "rgba(")
1110
- + Math.max(0, Math.min(255, Math.round(this.r) || 0)) + ", "
1111
- + Math.max(0, Math.min(255, Math.round(this.g) || 0)) + ", "
1112
- + Math.max(0, Math.min(255, Math.round(this.b) || 0))
1113
- + (a === 1 ? ")" : ", " + a + ")");
1114
- }
1115
-
1116
- function hex(value) {
1117
- value = Math.max(0, Math.min(255, Math.round(value) || 0));
1118
- return (value < 16 ? "0" : "") + value.toString(16);
1119
- }
1120
-
1121
- function hsla(h, s, l, a) {
1122
- if (a <= 0) h = s = l = NaN;
1123
- else if (l <= 0 || l >= 1) h = s = NaN;
1124
- else if (s <= 0) h = NaN;
1125
- return new Hsl(h, s, l, a);
1126
- }
1127
-
1128
- function hslConvert(o) {
1129
- if (o instanceof Hsl) return new Hsl(o.h, o.s, o.l, o.opacity);
1130
- if (!(o instanceof Color)) o = color(o);
1131
- if (!o) return new Hsl;
1132
- if (o instanceof Hsl) return o;
1133
- o = o.rgb();
1134
- var r = o.r / 255,
1135
- g = o.g / 255,
1136
- b = o.b / 255,
1137
- min = Math.min(r, g, b),
1138
- max = Math.max(r, g, b),
1139
- h = NaN,
1140
- s = max - min,
1141
- l = (max + min) / 2;
1142
- if (s) {
1143
- if (r === max) h = (g - b) / s + (g < b) * 6;
1144
- else if (g === max) h = (b - r) / s + 2;
1145
- else h = (r - g) / s + 4;
1146
- s /= l < 0.5 ? max + min : 2 - max - min;
1147
- h *= 60;
1148
- } else {
1149
- s = l > 0 && l < 1 ? 0 : h;
1150
- }
1151
- return new Hsl(h, s, l, o.opacity);
1152
- }
1153
-
1154
- function hsl(h, s, l, opacity) {
1155
- return arguments.length === 1 ? hslConvert(h) : new Hsl(h, s, l, opacity == null ? 1 : opacity);
1156
- }
1157
-
1158
- function Hsl(h, s, l, opacity) {
1159
- this.h = +h;
1160
- this.s = +s;
1161
- this.l = +l;
1162
- this.opacity = +opacity;
1163
- }
1164
-
1165
- define(Hsl, hsl, extend(Color, {
1166
- brighter: function(k) {
1167
- k = k == null ? brighter : Math.pow(brighter, k);
1168
- return new Hsl(this.h, this.s, this.l * k, this.opacity);
1169
- },
1170
- darker: function(k) {
1171
- k = k == null ? darker : Math.pow(darker, k);
1172
- return new Hsl(this.h, this.s, this.l * k, this.opacity);
1173
- },
1174
- rgb: function() {
1175
- var h = this.h % 360 + (this.h < 0) * 360,
1176
- s = isNaN(h) || isNaN(this.s) ? 0 : this.s,
1177
- l = this.l,
1178
- m2 = l + (l < 0.5 ? l : 1 - l) * s,
1179
- m1 = 2 * l - m2;
1180
- return new Rgb(
1181
- hsl2rgb(h >= 240 ? h - 240 : h + 120, m1, m2),
1182
- hsl2rgb(h, m1, m2),
1183
- hsl2rgb(h < 120 ? h + 240 : h - 120, m1, m2),
1184
- this.opacity
1185
- );
1186
- },
1187
- displayable: function() {
1188
- return (0 <= this.s && this.s <= 1 || isNaN(this.s))
1189
- && (0 <= this.l && this.l <= 1)
1190
- && (0 <= this.opacity && this.opacity <= 1);
1191
- },
1192
- formatHsl: function() {
1193
- var a = this.opacity; a = isNaN(a) ? 1 : Math.max(0, Math.min(1, a));
1194
- return (a === 1 ? "hsl(" : "hsla(")
1195
- + (this.h || 0) + ", "
1196
- + (this.s || 0) * 100 + "%, "
1197
- + (this.l || 0) * 100 + "%"
1198
- + (a === 1 ? ")" : ", " + a + ")");
1199
- }
1200
- }));
1201
-
1202
- /* From FvD 13.37, CSS Color Module Level 3 */
1203
- function hsl2rgb(h, m1, m2) {
1204
- return (h < 60 ? m1 + (m2 - m1) * h / 60
1205
- : h < 180 ? m2
1206
- : h < 240 ? m1 + (m2 - m1) * (240 - h) / 60
1207
- : m1) * 255;
1208
- }
1209
-
1210
- function basis(t1, v0, v1, v2, v3) {
1211
- var t2 = t1 * t1, t3 = t2 * t1;
1212
- return ((1 - 3 * t1 + 3 * t2 - t3) * v0
1213
- + (4 - 6 * t2 + 3 * t3) * v1
1214
- + (1 + 3 * t1 + 3 * t2 - 3 * t3) * v2
1215
- + t3 * v3) / 6;
1216
- }
1217
-
1218
- function basis$1(values) {
1219
- var n = values.length - 1;
1220
- return function(t) {
1221
- var i = t <= 0 ? (t = 0) : t >= 1 ? (t = 1, n - 1) : Math.floor(t * n),
1222
- v1 = values[i],
1223
- v2 = values[i + 1],
1224
- v0 = i > 0 ? values[i - 1] : 2 * v1 - v2,
1225
- v3 = i < n - 1 ? values[i + 2] : 2 * v2 - v1;
1226
- return basis((t - i / n) * n, v0, v1, v2, v3);
1227
- };
1228
- }
1229
-
1230
- function constant$1(x) {
1231
- return function() {
1232
- return x;
1233
- };
1234
- }
1235
-
1236
- function linear(a, d) {
1237
- return function(t) {
1238
- return a + t * d;
1239
- };
1240
- }
1241
-
1242
- function exponential(a, b, y) {
1243
- return a = Math.pow(a, y), b = Math.pow(b, y) - a, y = 1 / y, function(t) {
1244
- return Math.pow(a + t * b, y);
1245
- };
1246
- }
1247
-
1248
- function gamma(y) {
1249
- return (y = +y) === 1 ? nogamma : function(a, b) {
1250
- return b - a ? exponential(a, b, y) : constant$1(isNaN(a) ? b : a);
1251
- };
1252
- }
1253
-
1254
- function nogamma(a, b) {
1255
- var d = b - a;
1256
- return d ? linear(a, d) : constant$1(isNaN(a) ? b : a);
1257
- }
1258
-
1259
- var rgb$1 = (function rgbGamma(y) {
1260
- var color = gamma(y);
1261
-
1262
- function rgb$1(start, end) {
1263
- var r = color((start = rgb(start)).r, (end = rgb(end)).r),
1264
- g = color(start.g, end.g),
1265
- b = color(start.b, end.b),
1266
- opacity = nogamma(start.opacity, end.opacity);
1267
- return function(t) {
1268
- start.r = r(t);
1269
- start.g = g(t);
1270
- start.b = b(t);
1271
- start.opacity = opacity(t);
1272
- return start + "";
1273
- };
1274
- }
1275
-
1276
- rgb$1.gamma = rgbGamma;
1277
-
1278
- return rgb$1;
1279
- })(1);
1280
-
1281
- function rgbSpline(spline) {
1282
- return function(colors) {
1283
- var n = colors.length,
1284
- r = new Array(n),
1285
- g = new Array(n),
1286
- b = new Array(n),
1287
- i, color;
1288
- for (i = 0; i < n; ++i) {
1289
- color = rgb(colors[i]);
1290
- r[i] = color.r || 0;
1291
- g[i] = color.g || 0;
1292
- b[i] = color.b || 0;
1293
- }
1294
- r = spline(r);
1295
- g = spline(g);
1296
- b = spline(b);
1297
- color.opacity = 1;
1298
- return function(t) {
1299
- color.r = r(t);
1300
- color.g = g(t);
1301
- color.b = b(t);
1302
- return color + "";
1303
- };
1304
- };
1305
- }
1306
-
1307
- var rgbBasis = rgbSpline(basis$1);
1308
-
1309
- function numberArray(a, b) {
1310
- if (!b) b = [];
1311
- var n = a ? Math.min(b.length, a.length) : 0,
1312
- c = b.slice(),
1313
- i;
1314
- return function(t) {
1315
- for (i = 0; i < n; ++i) c[i] = a[i] * (1 - t) + b[i] * t;
1316
- return c;
1317
- };
1318
- }
1319
-
1320
- function isNumberArray(x) {
1321
- return ArrayBuffer.isView(x) && !(x instanceof DataView);
1322
- }
1323
-
1324
- function genericArray(a, b) {
1325
- var nb = b ? b.length : 0,
1326
- na = a ? Math.min(nb, a.length) : 0,
1327
- x = new Array(na),
1328
- c = new Array(nb),
1329
- i;
1330
-
1331
- for (i = 0; i < na; ++i) x[i] = interpolate(a[i], b[i]);
1332
- for (; i < nb; ++i) c[i] = b[i];
1333
-
1334
- return function(t) {
1335
- for (i = 0; i < na; ++i) c[i] = x[i](t);
1336
- return c;
1337
- };
1338
- }
1339
-
1340
- function date(a, b) {
1341
- var d = new Date;
1342
- return a = +a, b = +b, function(t) {
1343
- return d.setTime(a * (1 - t) + b * t), d;
1344
- };
1345
- }
1346
-
1347
- function interpolateNumber(a, b) {
1348
- return a = +a, b = +b, function(t) {
1349
- return a * (1 - t) + b * t;
1350
- };
1351
- }
1352
-
1353
- function object(a, b) {
1354
- var i = {},
1355
- c = {},
1356
- k;
1357
-
1358
- if (a === null || typeof a !== "object") a = {};
1359
- if (b === null || typeof b !== "object") b = {};
1360
-
1361
- for (k in b) {
1362
- if (k in a) {
1363
- i[k] = interpolate(a[k], b[k]);
1364
- } else {
1365
- c[k] = b[k];
1366
- }
1367
- }
1368
-
1369
- return function(t) {
1370
- for (k in i) c[k] = i[k](t);
1371
- return c;
1372
- };
1373
- }
1374
-
1375
- var reA = /[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,
1376
- reB = new RegExp(reA.source, "g");
1377
-
1378
- function zero(b) {
1379
- return function() {
1380
- return b;
1381
- };
1382
- }
1383
-
1384
- function one(b) {
1385
- return function(t) {
1386
- return b(t) + "";
1387
- };
1388
- }
1389
-
1390
- function string(a, b) {
1391
- var bi = reA.lastIndex = reB.lastIndex = 0, // scan index for next number in b
1392
- am, // current match in a
1393
- bm, // current match in b
1394
- bs, // string preceding current number in b, if any
1395
- i = -1, // index in s
1396
- s = [], // string constants and placeholders
1397
- q = []; // number interpolators
1398
-
1399
- // Coerce inputs to strings.
1400
- a = a + "", b = b + "";
1401
-
1402
- // Interpolate pairs of numbers in a & b.
1403
- while ((am = reA.exec(a))
1404
- && (bm = reB.exec(b))) {
1405
- if ((bs = bm.index) > bi) { // a string precedes the next number in b
1406
- bs = b.slice(bi, bs);
1407
- if (s[i]) s[i] += bs; // coalesce with previous string
1408
- else s[++i] = bs;
1409
- }
1410
- if ((am = am[0]) === (bm = bm[0])) { // numbers in a & b match
1411
- if (s[i]) s[i] += bm; // coalesce with previous string
1412
- else s[++i] = bm;
1413
- } else { // interpolate non-matching numbers
1414
- s[++i] = null;
1415
- q.push({i: i, x: interpolateNumber(am, bm)});
1416
- }
1417
- bi = reB.lastIndex;
1418
- }
1419
-
1420
- // Add remains of b.
1421
- if (bi < b.length) {
1422
- bs = b.slice(bi);
1423
- if (s[i]) s[i] += bs; // coalesce with previous string
1424
- else s[++i] = bs;
1425
- }
1426
-
1427
- // Special optimization for only a single match.
1428
- // Otherwise, interpolate each of the numbers and rejoin the string.
1429
- return s.length < 2 ? (q[0]
1430
- ? one(q[0].x)
1431
- : zero(b))
1432
- : (b = q.length, function(t) {
1433
- for (var i = 0, o; i < b; ++i) s[(o = q[i]).i] = o.x(t);
1434
- return s.join("");
1435
- });
1436
- }
1437
-
1438
- function interpolate(a, b) {
1439
- var t = typeof b, c;
1440
- return b == null || t === "boolean" ? constant$1(b)
1441
- : (t === "number" ? interpolateNumber
1442
- : t === "string" ? ((c = color(b)) ? (b = c, rgb$1) : string)
1443
- : b instanceof color ? rgb$1
1444
- : b instanceof Date ? date
1445
- : isNumberArray(b) ? numberArray
1446
- : Array.isArray(b) ? genericArray
1447
- : typeof b.valueOf !== "function" && typeof b.toString !== "function" || isNaN(b) ? object
1448
- : interpolateNumber)(a, b);
1449
- }
1450
-
1451
- function interpolateRound(a, b) {
1452
- return a = +a, b = +b, function(t) {
1453
- return Math.round(a * (1 - t) + b * t);
1454
- };
1455
- }
1456
-
1457
- function constant$2(x) {
1458
- return function() {
1459
- return x;
1460
- };
1461
- }
1462
-
1463
- function number(x) {
1464
- return +x;
1465
- }
1466
-
1467
- var unit = [0, 1];
1468
-
1469
- function identity$1(x) {
1470
- return x;
1471
- }
1472
-
1473
- function normalize(a, b) {
1474
- return (b -= (a = +a))
1475
- ? function(x) { return (x - a) / b; }
1476
- : constant$2(isNaN(b) ? NaN : 0.5);
1477
- }
1478
-
1479
- function clamper(a, b) {
1480
- var t;
1481
- if (a > b) t = a, a = b, b = t;
1482
- return function(x) { return Math.max(a, Math.min(b, x)); };
1483
- }
1484
-
1485
- // normalize(a, b)(x) takes a domain value x in [a,b] and returns the corresponding parameter t in [0,1].
1486
- // interpolate(a, b)(t) takes a parameter t in [0,1] and returns the corresponding range value x in [a,b].
1487
- function bimap(domain, range, interpolate) {
1488
- var d0 = domain[0], d1 = domain[1], r0 = range[0], r1 = range[1];
1489
- if (d1 < d0) d0 = normalize(d1, d0), r0 = interpolate(r1, r0);
1490
- else d0 = normalize(d0, d1), r0 = interpolate(r0, r1);
1491
- return function(x) { return r0(d0(x)); };
1492
- }
1493
-
1494
- function polymap(domain, range, interpolate) {
1495
- var j = Math.min(domain.length, range.length) - 1,
1496
- d = new Array(j),
1497
- r = new Array(j),
1498
- i = -1;
1499
-
1500
- // Reverse descending domains.
1501
- if (domain[j] < domain[0]) {
1502
- domain = domain.slice().reverse();
1503
- range = range.slice().reverse();
1504
- }
1505
-
1506
- while (++i < j) {
1507
- d[i] = normalize(domain[i], domain[i + 1]);
1508
- r[i] = interpolate(range[i], range[i + 1]);
1509
- }
1510
-
1511
- return function(x) {
1512
- var i = bisectRight(domain, x, 1, j) - 1;
1513
- return r[i](d[i](x));
1514
- };
1515
- }
1516
-
1517
- function copy(source, target) {
1518
- return target
1519
- .domain(source.domain())
1520
- .range(source.range())
1521
- .interpolate(source.interpolate())
1522
- .clamp(source.clamp())
1523
- .unknown(source.unknown());
1524
- }
1525
-
1526
- function transformer() {
1527
- var domain = unit,
1528
- range = unit,
1529
- interpolate$1 = interpolate,
1530
- transform,
1531
- untransform,
1532
- unknown,
1533
- clamp = identity$1,
1534
- piecewise,
1535
- output,
1536
- input;
1537
-
1538
- function rescale() {
1539
- var n = Math.min(domain.length, range.length);
1540
- if (clamp !== identity$1) clamp = clamper(domain[0], domain[n - 1]);
1541
- piecewise = n > 2 ? polymap : bimap;
1542
- output = input = null;
1543
- return scale;
1544
- }
1545
-
1546
- function scale(x) {
1547
- return isNaN(x = +x) ? unknown : (output || (output = piecewise(domain.map(transform), range, interpolate$1)))(transform(clamp(x)));
1548
- }
1549
-
1550
- scale.invert = function(y) {
1551
- return clamp(untransform((input || (input = piecewise(range, domain.map(transform), interpolateNumber)))(y)));
1552
- };
1553
-
1554
- scale.domain = function(_) {
1555
- return arguments.length ? (domain = Array.from(_, number), rescale()) : domain.slice();
1556
- };
1557
-
1558
- scale.range = function(_) {
1559
- return arguments.length ? (range = Array.from(_), rescale()) : range.slice();
1560
- };
1561
-
1562
- scale.rangeRound = function(_) {
1563
- return range = Array.from(_), interpolate$1 = interpolateRound, rescale();
1564
- };
1565
-
1566
- scale.clamp = function(_) {
1567
- return arguments.length ? (clamp = _ ? true : identity$1, rescale()) : clamp !== identity$1;
1568
- };
1569
-
1570
- scale.interpolate = function(_) {
1571
- return arguments.length ? (interpolate$1 = _, rescale()) : interpolate$1;
1572
- };
1573
-
1574
- scale.unknown = function(_) {
1575
- return arguments.length ? (unknown = _, scale) : unknown;
1576
- };
1577
-
1578
- return function(t, u) {
1579
- transform = t, untransform = u;
1580
- return rescale();
1581
- };
1582
- }
1583
-
1584
- function continuous() {
1585
- return transformer()(identity$1, identity$1);
1586
- }
1587
-
1588
- // Computes the decimal coefficient and exponent of the specified number x with
1589
- // significant digits p, where x is positive and p is in [1, 21] or undefined.
1590
- // For example, formatDecimal(1.23) returns ["123", 0].
1591
- function formatDecimal(x, p) {
1592
- if ((i = (x = p ? x.toExponential(p - 1) : x.toExponential()).indexOf("e")) < 0) return null; // NaN, ±Infinity
1593
- var i, coefficient = x.slice(0, i);
1594
-
1595
- // The string returned by toExponential either has the form \d\.\d+e[-+]\d+
1596
- // (e.g., 1.2e+3) or the form \de[-+]\d+ (e.g., 1e+3).
1597
- return [
1598
- coefficient.length > 1 ? coefficient[0] + coefficient.slice(2) : coefficient,
1599
- +x.slice(i + 1)
1600
- ];
1601
- }
1602
-
1603
- function exponent(x) {
1604
- return x = formatDecimal(Math.abs(x)), x ? x[1] : NaN;
1605
- }
1606
-
1607
- function formatGroup(grouping, thousands) {
1608
- return function(value, width) {
1609
- var i = value.length,
1610
- t = [],
1611
- j = 0,
1612
- g = grouping[0],
1613
- length = 0;
1614
-
1615
- while (i > 0 && g > 0) {
1616
- if (length + g + 1 > width) g = Math.max(1, width - length);
1617
- t.push(value.substring(i -= g, i + g));
1618
- if ((length += g + 1) > width) break;
1619
- g = grouping[j = (j + 1) % grouping.length];
1620
- }
1621
-
1622
- return t.reverse().join(thousands);
1623
- };
1624
- }
1625
-
1626
- function formatNumerals(numerals) {
1627
- return function(value) {
1628
- return value.replace(/[0-9]/g, function(i) {
1629
- return numerals[+i];
1630
- });
1631
- };
1632
- }
1633
-
1634
- // [[fill]align][sign][symbol][0][width][,][.precision][~][type]
1635
- var re = /^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;
1636
-
1637
- function formatSpecifier(specifier) {
1638
- if (!(match = re.exec(specifier))) throw new Error("invalid format: " + specifier);
1639
- var match;
1640
- return new FormatSpecifier({
1641
- fill: match[1],
1642
- align: match[2],
1643
- sign: match[3],
1644
- symbol: match[4],
1645
- zero: match[5],
1646
- width: match[6],
1647
- comma: match[7],
1648
- precision: match[8] && match[8].slice(1),
1649
- trim: match[9],
1650
- type: match[10]
1651
- });
1652
- }
1653
-
1654
- formatSpecifier.prototype = FormatSpecifier.prototype; // instanceof
1655
-
1656
- function FormatSpecifier(specifier) {
1657
- this.fill = specifier.fill === undefined ? " " : specifier.fill + "";
1658
- this.align = specifier.align === undefined ? ">" : specifier.align + "";
1659
- this.sign = specifier.sign === undefined ? "-" : specifier.sign + "";
1660
- this.symbol = specifier.symbol === undefined ? "" : specifier.symbol + "";
1661
- this.zero = !!specifier.zero;
1662
- this.width = specifier.width === undefined ? undefined : +specifier.width;
1663
- this.comma = !!specifier.comma;
1664
- this.precision = specifier.precision === undefined ? undefined : +specifier.precision;
1665
- this.trim = !!specifier.trim;
1666
- this.type = specifier.type === undefined ? "" : specifier.type + "";
1667
- }
1668
-
1669
- FormatSpecifier.prototype.toString = function() {
1670
- return this.fill
1671
- + this.align
1672
- + this.sign
1673
- + this.symbol
1674
- + (this.zero ? "0" : "")
1675
- + (this.width === undefined ? "" : Math.max(1, this.width | 0))
1676
- + (this.comma ? "," : "")
1677
- + (this.precision === undefined ? "" : "." + Math.max(0, this.precision | 0))
1678
- + (this.trim ? "~" : "")
1679
- + this.type;
1680
- };
1681
-
1682
- // Trims insignificant zeros, e.g., replaces 1.2000k with 1.2k.
1683
- function formatTrim(s) {
1684
- out: for (var n = s.length, i = 1, i0 = -1, i1; i < n; ++i) {
1685
- switch (s[i]) {
1686
- case ".": i0 = i1 = i; break;
1687
- case "0": if (i0 === 0) i0 = i; i1 = i; break;
1688
- default: if (!+s[i]) break out; if (i0 > 0) i0 = 0; break;
1689
- }
1690
- }
1691
- return i0 > 0 ? s.slice(0, i0) + s.slice(i1 + 1) : s;
1692
- }
1693
-
1694
- var prefixExponent;
1695
-
1696
- function formatPrefixAuto(x, p) {
1697
- var d = formatDecimal(x, p);
1698
- if (!d) return x + "";
1699
- var coefficient = d[0],
1700
- exponent = d[1],
1701
- i = exponent - (prefixExponent = Math.max(-8, Math.min(8, Math.floor(exponent / 3))) * 3) + 1,
1702
- n = coefficient.length;
1703
- return i === n ? coefficient
1704
- : i > n ? coefficient + new Array(i - n + 1).join("0")
1705
- : i > 0 ? coefficient.slice(0, i) + "." + coefficient.slice(i)
1706
- : "0." + new Array(1 - i).join("0") + formatDecimal(x, Math.max(0, p + i - 1))[0]; // less than 1y!
1707
- }
1708
-
1709
- function formatRounded(x, p) {
1710
- var d = formatDecimal(x, p);
1711
- if (!d) return x + "";
1712
- var coefficient = d[0],
1713
- exponent = d[1];
1714
- return exponent < 0 ? "0." + new Array(-exponent).join("0") + coefficient
1715
- : coefficient.length > exponent + 1 ? coefficient.slice(0, exponent + 1) + "." + coefficient.slice(exponent + 1)
1716
- : coefficient + new Array(exponent - coefficient.length + 2).join("0");
1717
- }
1718
-
1719
- var formatTypes = {
1720
- "%": function(x, p) { return (x * 100).toFixed(p); },
1721
- "b": function(x) { return Math.round(x).toString(2); },
1722
- "c": function(x) { return x + ""; },
1723
- "d": function(x) { return Math.round(x).toString(10); },
1724
- "e": function(x, p) { return x.toExponential(p); },
1725
- "f": function(x, p) { return x.toFixed(p); },
1726
- "g": function(x, p) { return x.toPrecision(p); },
1727
- "o": function(x) { return Math.round(x).toString(8); },
1728
- "p": function(x, p) { return formatRounded(x * 100, p); },
1729
- "r": formatRounded,
1730
- "s": formatPrefixAuto,
1731
- "X": function(x) { return Math.round(x).toString(16).toUpperCase(); },
1732
- "x": function(x) { return Math.round(x).toString(16); }
1733
- };
1734
-
1735
- function identity$2(x) {
1736
- return x;
1737
- }
1738
-
1739
- var map$1 = Array.prototype.map,
1740
- prefixes = ["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];
1741
-
1742
- function formatLocale(locale) {
1743
- var group = locale.grouping === undefined || locale.thousands === undefined ? identity$2 : formatGroup(map$1.call(locale.grouping, Number), locale.thousands + ""),
1744
- currencyPrefix = locale.currency === undefined ? "" : locale.currency[0] + "",
1745
- currencySuffix = locale.currency === undefined ? "" : locale.currency[1] + "",
1746
- decimal = locale.decimal === undefined ? "." : locale.decimal + "",
1747
- numerals = locale.numerals === undefined ? identity$2 : formatNumerals(map$1.call(locale.numerals, String)),
1748
- percent = locale.percent === undefined ? "%" : locale.percent + "",
1749
- minus = locale.minus === undefined ? "-" : locale.minus + "",
1750
- nan = locale.nan === undefined ? "NaN" : locale.nan + "";
1751
-
1752
- function newFormat(specifier) {
1753
- specifier = formatSpecifier(specifier);
1754
-
1755
- var fill = specifier.fill,
1756
- align = specifier.align,
1757
- sign = specifier.sign,
1758
- symbol = specifier.symbol,
1759
- zero = specifier.zero,
1760
- width = specifier.width,
1761
- comma = specifier.comma,
1762
- precision = specifier.precision,
1763
- trim = specifier.trim,
1764
- type = specifier.type;
1765
-
1766
- // The "n" type is an alias for ",g".
1767
- if (type === "n") comma = true, type = "g";
1768
-
1769
- // The "" type, and any invalid type, is an alias for ".12~g".
1770
- else if (!formatTypes[type]) precision === undefined && (precision = 12), trim = true, type = "g";
1771
-
1772
- // If zero fill is specified, padding goes after sign and before digits.
1773
- if (zero || (fill === "0" && align === "=")) zero = true, fill = "0", align = "=";
1774
-
1775
- // Compute the prefix and suffix.
1776
- // For SI-prefix, the suffix is lazily computed.
1777
- var prefix = symbol === "$" ? currencyPrefix : symbol === "#" && /[boxX]/.test(type) ? "0" + type.toLowerCase() : "",
1778
- suffix = symbol === "$" ? currencySuffix : /[%p]/.test(type) ? percent : "";
1779
-
1780
- // What format function should we use?
1781
- // Is this an integer type?
1782
- // Can this type generate exponential notation?
1783
- var formatType = formatTypes[type],
1784
- maybeSuffix = /[defgprs%]/.test(type);
1785
-
1786
- // Set the default precision if not specified,
1787
- // or clamp the specified precision to the supported range.
1788
- // For significant precision, it must be in [1, 21].
1789
- // For fixed precision, it must be in [0, 20].
1790
- precision = precision === undefined ? 6
1791
- : /[gprs]/.test(type) ? Math.max(1, Math.min(21, precision))
1792
- : Math.max(0, Math.min(20, precision));
1793
-
1794
- function format(value) {
1795
- var valuePrefix = prefix,
1796
- valueSuffix = suffix,
1797
- i, n, c;
1798
-
1799
- if (type === "c") {
1800
- valueSuffix = formatType(value) + valueSuffix;
1801
- value = "";
1802
- } else {
1803
- value = +value;
1804
-
1805
- // Perform the initial formatting.
1806
- var valueNegative = value < 0;
1807
- value = isNaN(value) ? nan : formatType(Math.abs(value), precision);
1808
-
1809
- // Trim insignificant zeros.
1810
- if (trim) value = formatTrim(value);
1811
-
1812
- // If a negative value rounds to zero during formatting, treat as positive.
1813
- if (valueNegative && +value === 0) valueNegative = false;
1814
-
1815
- // Compute the prefix and suffix.
1816
- valuePrefix = (valueNegative ? (sign === "(" ? sign : minus) : sign === "-" || sign === "(" ? "" : sign) + valuePrefix;
1817
-
1818
- valueSuffix = (type === "s" ? prefixes[8 + prefixExponent / 3] : "") + valueSuffix + (valueNegative && sign === "(" ? ")" : "");
1819
-
1820
- // Break the formatted value into the integer “value” part that can be
1821
- // grouped, and fractional or exponential “suffix” part that is not.
1822
- if (maybeSuffix) {
1823
- i = -1, n = value.length;
1824
- while (++i < n) {
1825
- if (c = value.charCodeAt(i), 48 > c || c > 57) {
1826
- valueSuffix = (c === 46 ? decimal + value.slice(i + 1) : value.slice(i)) + valueSuffix;
1827
- value = value.slice(0, i);
1828
- break;
1829
- }
1830
- }
1831
- }
1832
- }
1833
-
1834
- // If the fill character is not "0", grouping is applied before padding.
1835
- if (comma && !zero) value = group(value, Infinity);
1836
-
1837
- // Compute the padding.
1838
- var length = valuePrefix.length + value.length + valueSuffix.length,
1839
- padding = length < width ? new Array(width - length + 1).join(fill) : "";
1840
-
1841
- // If the fill character is "0", grouping is applied after padding.
1842
- if (comma && zero) value = group(padding + value, padding.length ? width - valueSuffix.length : Infinity), padding = "";
1843
-
1844
- // Reconstruct the final output based on the desired alignment.
1845
- switch (align) {
1846
- case "<": value = valuePrefix + value + valueSuffix + padding; break;
1847
- case "=": value = valuePrefix + padding + value + valueSuffix; break;
1848
- case "^": value = padding.slice(0, length = padding.length >> 1) + valuePrefix + value + valueSuffix + padding.slice(length); break;
1849
- default: value = padding + valuePrefix + value + valueSuffix; break;
1850
- }
1851
-
1852
- return numerals(value);
1853
- }
1854
-
1855
- format.toString = function() {
1856
- return specifier + "";
1857
- };
1858
-
1859
- return format;
1860
- }
1861
-
1862
- function formatPrefix(specifier, value) {
1863
- var f = newFormat((specifier = formatSpecifier(specifier), specifier.type = "f", specifier)),
1864
- e = Math.max(-8, Math.min(8, Math.floor(exponent(value) / 3))) * 3,
1865
- k = Math.pow(10, -e),
1866
- prefix = prefixes[8 + e / 3];
1867
- return function(value) {
1868
- return f(k * value) + prefix;
1869
- };
1870
- }
1871
-
1872
- return {
1873
- format: newFormat,
1874
- formatPrefix: formatPrefix
1875
- };
1876
- }
1877
-
1878
- var locale;
1879
- var format$1;
1880
- var formatPrefix;
1881
-
1882
- defaultLocale({
1883
- decimal: ".",
1884
- thousands: ",",
1885
- grouping: [3],
1886
- currency: ["$", ""],
1887
- minus: "-"
1888
- });
1889
-
1890
- function defaultLocale(definition) {
1891
- locale = formatLocale(definition);
1892
- format$1 = locale.format;
1893
- formatPrefix = locale.formatPrefix;
1894
- return locale;
1895
- }
1896
-
1897
- function precisionFixed(step) {
1898
- return Math.max(0, -exponent(Math.abs(step)));
1899
- }
1900
-
1901
- function precisionPrefix(step, value) {
1902
- return Math.max(0, Math.max(-8, Math.min(8, Math.floor(exponent(value) / 3))) * 3 - exponent(Math.abs(step)));
1903
- }
1904
-
1905
- function precisionRound(step, max) {
1906
- step = Math.abs(step), max = Math.abs(max) - step;
1907
- return Math.max(0, exponent(max) - exponent(step)) + 1;
1908
- }
1909
-
1910
- function tickFormat(start, stop, count, specifier) {
1911
- var step = tickStep(start, stop, count),
1912
- precision;
1913
- specifier = formatSpecifier(specifier == null ? ",f" : specifier);
1914
- switch (specifier.type) {
1915
- case "s": {
1916
- var value = Math.max(Math.abs(start), Math.abs(stop));
1917
- if (specifier.precision == null && !isNaN(precision = precisionPrefix(step, value))) specifier.precision = precision;
1918
- return formatPrefix(specifier, value);
1919
- }
1920
- case "":
1921
- case "e":
1922
- case "g":
1923
- case "p":
1924
- case "r": {
1925
- if (specifier.precision == null && !isNaN(precision = precisionRound(step, Math.max(Math.abs(start), Math.abs(stop))))) specifier.precision = precision - (specifier.type === "e");
1926
- break;
1927
- }
1928
- case "f":
1929
- case "%": {
1930
- if (specifier.precision == null && !isNaN(precision = precisionFixed(step))) specifier.precision = precision - (specifier.type === "%") * 2;
1931
- break;
1932
- }
1933
- }
1934
- return format$1(specifier);
1935
- }
1936
-
1937
- function linearish(scale) {
1938
- var domain = scale.domain;
1939
-
1940
- scale.ticks = function(count) {
1941
- var d = domain();
1942
- return ticks(d[0], d[d.length - 1], count == null ? 10 : count);
1943
- };
1944
-
1945
- scale.tickFormat = function(count, specifier) {
1946
- var d = domain();
1947
- return tickFormat(d[0], d[d.length - 1], count == null ? 10 : count, specifier);
1948
- };
1949
-
1950
- scale.nice = function(count) {
1951
- if (count == null) count = 10;
1952
-
1953
- var d = domain(),
1954
- i0 = 0,
1955
- i1 = d.length - 1,
1956
- start = d[i0],
1957
- stop = d[i1],
1958
- step;
1959
-
1960
- if (stop < start) {
1961
- step = start, start = stop, stop = step;
1962
- step = i0, i0 = i1, i1 = step;
1963
- }
1964
-
1965
- step = tickIncrement(start, stop, count);
1966
-
1967
- if (step > 0) {
1968
- start = Math.floor(start / step) * step;
1969
- stop = Math.ceil(stop / step) * step;
1970
- step = tickIncrement(start, stop, count);
1971
- } else if (step < 0) {
1972
- start = Math.ceil(start * step) / step;
1973
- stop = Math.floor(stop * step) / step;
1974
- step = tickIncrement(start, stop, count);
1975
- }
1976
-
1977
- if (step > 0) {
1978
- d[i0] = Math.floor(start / step) * step;
1979
- d[i1] = Math.ceil(stop / step) * step;
1980
- domain(d);
1981
- } else if (step < 0) {
1982
- d[i0] = Math.ceil(start * step) / step;
1983
- d[i1] = Math.floor(stop * step) / step;
1984
- domain(d);
1985
- }
1986
-
1987
- return scale;
1988
- };
1989
-
1990
- return scale;
1991
- }
1992
-
1993
- function linear$1() {
1994
- var scale = continuous();
1995
-
1996
- scale.copy = function() {
1997
- return copy(scale, linear$1());
1998
- };
1999
-
2000
- initRange.apply(scale, arguments);
2001
-
2002
- return linearish(scale);
2003
- }
2004
-
2005
- function transformer$1() {
2006
- var x0 = 0,
2007
- x1 = 1,
2008
- t0,
2009
- t1,
2010
- k10,
2011
- transform,
2012
- interpolator = identity$1,
2013
- clamp = false,
2014
- unknown;
2015
-
2016
- function scale(x) {
2017
- return isNaN(x = +x) ? unknown : interpolator(k10 === 0 ? 0.5 : (x = (transform(x) - t0) * k10, clamp ? Math.max(0, Math.min(1, x)) : x));
2018
- }
2019
-
2020
- scale.domain = function(_) {
2021
- return arguments.length ? ([x0, x1] = _, t0 = transform(x0 = +x0), t1 = transform(x1 = +x1), k10 = t0 === t1 ? 0 : 1 / (t1 - t0), scale) : [x0, x1];
2022
- };
2023
-
2024
- scale.clamp = function(_) {
2025
- return arguments.length ? (clamp = !!_, scale) : clamp;
2026
- };
2027
-
2028
- scale.interpolator = function(_) {
2029
- return arguments.length ? (interpolator = _, scale) : interpolator;
2030
- };
2031
-
2032
- function range(interpolate) {
2033
- return function(_) {
2034
- var r0, r1;
2035
- return arguments.length ? ([r0, r1] = _, interpolator = interpolate(r0, r1), scale) : [interpolator(0), interpolator(1)];
2036
- };
2037
- }
2038
-
2039
- scale.range = range(interpolate);
2040
-
2041
- scale.rangeRound = range(interpolateRound);
2042
-
2043
- scale.unknown = function(_) {
2044
- return arguments.length ? (unknown = _, scale) : unknown;
2045
- };
2046
-
2047
- return function(t) {
2048
- transform = t, t0 = t(x0), t1 = t(x1), k10 = t0 === t1 ? 0 : 1 / (t1 - t0);
2049
- return scale;
2050
- };
2051
- }
2052
-
2053
- function copy$1(source, target) {
2054
- return target
2055
- .domain(source.domain())
2056
- .interpolator(source.interpolator())
2057
- .clamp(source.clamp())
2058
- .unknown(source.unknown());
2059
- }
2060
-
2061
- function sequential() {
2062
- var scale = linearish(transformer$1()(identity$1));
2063
-
2064
- scale.copy = function() {
2065
- return copy$1(scale, sequential());
2066
- };
2067
-
2068
- return initInterpolator.apply(scale, arguments);
2069
- }
2070
-
2071
- function colors(specifier) {
2072
- var n = specifier.length / 6 | 0, colors = new Array(n), i = 0;
2073
- while (i < n) colors[i] = "#" + specifier.slice(i * 6, ++i * 6);
2074
- return colors;
2075
- }
2076
-
2077
- function ramp(scheme) {
2078
- return rgbBasis(scheme[scheme.length - 1]);
2079
- }
2080
-
2081
- var scheme = new Array(3).concat(
2082
- "fc8d59ffffbf99d594",
2083
- "d7191cfdae61abdda42b83ba",
2084
- "d7191cfdae61ffffbfabdda42b83ba",
2085
- "d53e4ffc8d59fee08be6f59899d5943288bd",
2086
- "d53e4ffc8d59fee08bffffbfe6f59899d5943288bd",
2087
- "d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd",
2088
- "d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd",
2089
- "9e0142d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd5e4fa2",
2090
- "9e0142d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd5e4fa2"
2091
- ).map(colors);
2092
-
2093
- var colorRainbow = ramp(scheme);
2094
-
2095
- const COLOR_BASE = "#cecece";
2096
-
2097
- // https://www.w3.org/TR/WCAG20/#relativeluminancedef
2098
- const rc = 0.2126;
2099
- const gc = 0.7152;
2100
- const bc = 0.0722;
2101
- // low-gamma adjust coefficient
2102
- const lowc = 1 / 12.92;
2103
-
2104
- function adjustGamma(_) {
2105
- return Math.pow((_ + 0.055) / 1.055, 2.4);
2106
- }
2107
-
2108
- function relativeLuminance(o) {
2109
- const rsrgb = o.r / 255;
2110
- const gsrgb = o.g / 255;
2111
- const bsrgb = o.b / 255;
2112
-
2113
- const r = rsrgb <= 0.03928 ? rsrgb * lowc : adjustGamma(rsrgb);
2114
- const g = gsrgb <= 0.03928 ? gsrgb * lowc : adjustGamma(gsrgb);
2115
- const b = bsrgb <= 0.03928 ? bsrgb * lowc : adjustGamma(bsrgb);
2116
-
2117
- return r * rc + g * gc + b * bc;
2118
- }
2119
-
2120
- const createRainbowColor = (root) => {
2121
- const colorParentMap = new Map();
2122
- colorParentMap.set(root, COLOR_BASE);
2123
-
2124
- if (root.children != null) {
2125
- const colorScale = sequential(
2126
- [0, root.children.length - 1],
2127
- colorRainbow
2128
- );
2129
- root.children.forEach((c, id) => {
2130
- colorParentMap.set(c, colorScale(id));
2131
- });
2132
- }
2133
-
2134
- const colorMap = new Map();
2135
-
2136
- const lightScale = linear$1().domain([0, root.height]).range([0.8, 0.1]);
2137
-
2138
- const getBackgroundColor = (node) => {
2139
- const parents = node.ancestors();
2140
- const colorStr =
2141
- parents.length === 1
2142
- ? colorParentMap.get(parents[0])
2143
- : colorParentMap.get(parents[parents.length - 2]);
2144
-
2145
- const hslColor = hsl(colorStr);
2146
- hslColor.l = lightScale(node.depth);
2147
-
2148
- return hslColor;
2149
- };
2150
-
2151
- return (node) => {
2152
- if (!colorMap.has(node)) {
2153
- const backgroundColor = getBackgroundColor(node);
2154
- const l = relativeLuminance(backgroundColor.rgb());
2155
- const fontColor = l > 0.179 ? "#000" : "#fff";
2156
- colorMap.set(node, { backgroundColor, fontColor });
2157
- }
2158
-
2159
- return colorMap.get(node);
2160
- };
2161
- };
2162
-
2163
- const LABELS = {
2164
- renderedLength: "Rendered",
2165
- gzipLength: "Gzip",
2166
- brotliLength: "Brotli",
2167
- };
2168
-
2169
- const getAvailableSizeOptions = (options = {}) => {
2170
- const availableSizeProperties = ["renderedLength"];
2171
- if (options.gzip) {
2172
- availableSizeProperties.push("gzipLength");
2173
- }
2174
- if (options.brotli) {
2175
- availableSizeProperties.push("brotliLength");
2176
- }
2177
-
2178
- return availableSizeProperties;
2179
- };
2180
-
2181
- const Tooltip = ({
2182
- node,
2183
- visible,
2184
- root,
2185
- sizeProperty,
2186
- availableSizeProperties,
2187
- importedByCache,
2188
- }) => {
2189
- const ref = y();
2190
- const [style, setStyle] = v$1({});
2191
- const content = s$1(() => {
2192
- if (!node) return null;
2193
-
2194
- const mainSize = node.originalValue[sizeProperty];
2195
-
2196
- const percentageNum = (100 * mainSize) / root.originalValue[sizeProperty];
2197
- const percentage = percentageNum.toFixed(2);
2198
- const percentageString = percentage + "%";
2199
-
2200
- const uid = node.data.uid;
2201
-
2202
- const path = node
2203
- .ancestors()
2204
- .reverse()
2205
- .map((d) => d.data.name)
2206
- .join("/");
2207
-
2208
- return m$2`
2209
- <div>${path}</div>
2210
- ${availableSizeProperties.map((sizeProp) => {
2211
- if (sizeProp === sizeProperty) {
2212
- return m$2`
2213
- <div>
2214
- <b>${LABELS[sizeProp]}:${" "}${format_1(mainSize)}</b
2215
- >${" "}(${percentageString})
2216
- </div>
2217
- `;
2218
- } else {
2219
- return m$2`
2220
- <div>
2221
- ${LABELS[sizeProp]}:${" "}
2222
- ${format_1(node.originalValue[sizeProp])}
2223
- </div>
2224
- `;
2225
- }
2226
- })}
2227
- ${uid &&
2228
- importedByCache.has(uid) &&
2229
- m$2`
2230
- <div>
2231
- <div><b>Imported By</b>:</div>
2232
- ${[...new Set(importedByCache.get(uid).map(({ id }) => id))].map(
2233
- (id) => m$2` <div>${id}</div> `
2234
- )}
2235
- </div>
2236
- `}
2237
- `;
2238
- }, [node]);
2239
-
2240
- const updatePosition = (mouseCoords) => {
2241
- const pos = {
2242
- left: mouseCoords.x + Tooltip.marginX,
2243
- top: mouseCoords.y + Tooltip.marginY,
2244
- };
2245
-
2246
- const boundingRect = ref.current.getBoundingClientRect();
2247
-
2248
- if (pos.left + boundingRect.width > window.innerWidth) {
2249
- // Shifting horizontally
2250
- pos.left = window.innerWidth - boundingRect.width;
2251
- }
2252
-
2253
- if (pos.top + boundingRect.height > window.innerHeight) {
2254
- // Flipping vertically
2255
- pos.top = mouseCoords.y - Tooltip.marginY - boundingRect.height;
2256
- }
2257
-
2258
- setStyle(pos);
2259
- };
2260
-
2261
- const handleMouseMove = (event) => {
2262
- updatePosition({
2263
- x: event.pageX,
2264
- y: event.pageY,
2265
- });
2266
- };
2267
-
2268
- p$1(() => {
2269
- document.addEventListener("mousemove", handleMouseMove, true);
2270
- return () => {
2271
- document.removeEventListener("mousemove", handleMouseMove, true);
2272
- };
2273
- }, []);
2274
-
2275
- return m$2`
2276
- <div
2277
- class="tooltip ${visible ? "" : "tooltip-hidden"}"
2278
- ref=${ref}
2279
- style=${style}
2280
- >
2281
- ${content}
2282
- </div>
2283
- `;
2284
- };
2285
-
2286
- Tooltip.marginX = 10;
2287
- Tooltip.marginY = 30;
2288
-
2289
- const Node$1 = ({
2290
- node,
2291
- backgroundColor,
2292
- fontColor,
2293
- onClick,
2294
- isSelected,
2295
- onNodeHover,
2296
- sizeProperty,
2297
- }) => {
2298
- const {
2299
- nodeUid,
2300
- x0,
2301
- x1,
2302
- y1,
2303
- y0,
2304
- clipUid,
2305
- data,
2306
- originalValue,
2307
- children = null,
2308
- } = node;
2309
-
2310
- const tspan1Props = {};
2311
- const tspan2Props = {};
2312
- if (children != null) {
2313
- tspan1Props.dx = 3;
2314
- tspan2Props.dx = 3;
2315
- tspan1Props.y = 13;
2316
- tspan2Props.y = 13;
2317
- } else {
2318
- tspan1Props.x = 3;
2319
- tspan2Props.x = 3;
2320
- tspan1Props.y = "1.1em";
2321
- tspan2Props.y = "2.3em";
2322
- }
2323
-
2324
- const handleClickSelection = (event) => {
2325
- if (window.getSelection().toString() !== "") {
2326
- event.stopPropagation();
2327
- }
2328
- };
2329
-
2330
- return m$2`
2331
- <g
2332
- class="node"
2333
- transform="translate(${x0},${y0})"
2334
- onClick=${onClick}
2335
- onMouseOver=${(evt) => {
2336
- evt.stopPropagation();
2337
- onNodeHover(node);
2338
- }}
2339
- >
2340
- <rect
2341
- id=${nodeUid.id}
2342
- fill=${backgroundColor}
2343
- rx=${2}
2344
- ry=${2}
2345
- width=${x1 - x0}
2346
- height=${y1 - y0}
2347
- stroke=${isSelected ? "#fff" : null}
2348
- stroke-width=${isSelected ? 2 : null}
2349
- >
2350
- </rect>
2351
- <clipPath id=${clipUid.id}>
2352
- <use xlink:href=${nodeUid.href} />
2353
- </clipPath>
2354
- <text
2355
- clip-path=${clipUid}
2356
- fill=${fontColor}
2357
- onClick=${handleClickSelection}
2358
- >
2359
- <tspan ...${tspan1Props} font-size="0.7em">${data.name}</tspan>
2360
- <tspan ...${tspan2Props} fill-opacity=${0.7} font-size="0.7em"
2361
- >${format_1(originalValue[sizeProperty])}</tspan
2362
- >
2363
- </text>
2364
- </g>
2365
- `;
2366
- };
2367
-
2368
- const TreeMap = ({
2369
- root,
2370
- layout,
2371
- color,
2372
- width,
2373
- height,
2374
- onNodeHover,
2375
- sizeProperty,
2376
- }) => {
2377
- const [selectedNode, setSelectedNode] = v$1(null);
2378
-
2379
- const desiredValue = root.originalValue[sizeProperty] * 0.2;
2380
-
2381
- //handle zoom of selected node
2382
- const selectedNodeMultiplier =
2383
- selectedNode != null
2384
- ? desiredValue > selectedNode.originalValue[sizeProperty]
2385
- ? desiredValue / selectedNode.originalValue[sizeProperty]
2386
- : 3
2387
- : 1;
2388
-
2389
- // i only need to increase value of leaf nodes
2390
- // as folders will sum they up
2391
- const nodesToIncrease =
2392
- selectedNode != null
2393
- ? selectedNode.children != null
2394
- ? selectedNode.leaves()
2395
- : [selectedNode]
2396
- : [];
2397
-
2398
- const nodesToIncreaseSet = new Set(nodesToIncrease);
2399
-
2400
- // update value for nodes
2401
- root = root.eachAfter((node) => {
2402
- let sum = 0;
2403
- const children = node.children;
2404
- if (children != null) {
2405
- let i = children.length;
2406
- while (--i >= 0) sum += children[i].value;
2407
- } else {
2408
- sum = nodesToIncreaseSet.has(node)
2409
- ? node.originalValue[sizeProperty] * selectedNodeMultiplier
2410
- : node.originalValue[sizeProperty];
2411
- }
2412
-
2413
- node.value = sum;
2414
- });
2415
-
2416
- layout(root);
2417
-
2418
- // this will make groups by height
2419
- const nestedDataMap = group(root.descendants(), (d) => d.height);
2420
- const nestedData = Array.from(nestedDataMap, ([key, values]) => ({
2421
- key,
2422
- values,
2423
- }));
2424
- nestedData.sort((a, b) => b.key - a.key);
2425
-
2426
- return m$2`
2427
- <svg xmlns="http://www.w3.org/2000/svg" viewBox=${`0 0 ${width} ${height}`}>
2428
- ${nestedData.map(({ key, values }) => {
2429
- return m$2`
2430
- <g class="layer" key=${key}>
2431
- ${values.map((node) => {
2432
- const { backgroundColor, fontColor } = color(node);
2433
- return m$2`
2434
- <${Node$1}
2435
- node=${node}
2436
- backgroundColor=${backgroundColor}
2437
- fontColor=${fontColor}
2438
- onClick=${() =>
2439
- setSelectedNode(selectedNode === node ? null : node)}
2440
- isSelected=${selectedNode === node}
2441
- onNodeHover=${onNodeHover}
2442
- sizeProperty=${sizeProperty}
2443
- />
2444
- `;
2445
- })}
2446
- </g>
2447
- `;
2448
- })}
2449
- </svg>
2450
- `;
2451
- };
2452
-
2453
- const Chart = ({
2454
- layout,
2455
- root,
2456
- color,
2457
- width,
2458
- height,
2459
- sizeProperty,
2460
- availableSizeProperties,
2461
- importedCache,
2462
- importedByCache,
2463
- }) => {
2464
- const [showTooltip, setShowTooltip] = v$1(false);
2465
- const [tooltipNode, setTooltipNode] = v$1(null);
2466
-
2467
- const handleMouseOut = () => {
2468
- setShowTooltip(false);
2469
- };
2470
-
2471
- p$1(() => {
2472
- document.addEventListener("mouseover", handleMouseOut);
2473
- return () => {
2474
- document.removeEventListener("mouseover", handleMouseOut);
2475
- };
2476
- }, []);
2477
-
2478
- return m$2`
2479
- <${TreeMap}
2480
- layout=${layout}
2481
- root=${root}
2482
- color=${color}
2483
- width=${width}
2484
- height=${height}
2485
- sizeProperty=${sizeProperty}
2486
- availableSizeProperties=${availableSizeProperties}
2487
- onNodeHover=${(node) => {
2488
- setTooltipNode(node);
2489
- setShowTooltip(true);
2490
- }}
2491
- />
2492
- <${Tooltip}
2493
- visible=${showTooltip}
2494
- node=${tooltipNode}
2495
- root=${root}
2496
- sizeProperty=${sizeProperty}
2497
- availableSizeProperties=${availableSizeProperties}
2498
- importedByCache=${importedByCache}
2499
- importedCache=${importedCache}
2500
- />
2501
- `;
2502
- };
2503
-
2504
- const SideBar = ({
2505
- availableSizeProperties,
2506
- sizeProperty,
2507
- setSizeProperty,
2508
- }) => {
2509
- const handleChange = (sizeProp) => () => {
2510
- if (sizeProp !== sizeProperty) {
2511
- setSizeProperty(sizeProp);
2512
- }
2513
- };
2514
- return m$2`
2515
- <aside class="sidebar">
2516
- <div class="size-selectors">
2517
- ${availableSizeProperties.length > 1 &&
2518
- availableSizeProperties.map((sizeProp) => {
2519
- const id = `selector-${sizeProp}`;
2520
- return m$2`
2521
- <div class="size-selector">
2522
- <input
2523
- type="radio"
2524
- id=${id}
2525
- checked=${sizeProp === sizeProperty}
2526
- onChange=${handleChange(sizeProp)}
2527
- />
2528
- <label for=${id}>
2529
- ${LABELS[sizeProp]}
2530
- </label>
2531
- </div>
2532
- `;
2533
- })}
2534
- </div>
2535
- </aside>
2536
- `;
2537
- };
2538
-
2539
- const Main = ({
2540
- width,
2541
- height,
2542
- data: { tree, nodes, links, options = {} },
2543
- }) => {
2544
- const availableSizeProperties = getAvailableSizeOptions(options);
2545
-
2546
- const [sizeProperty, setSizeProperty] = v$1(availableSizeProperties[0]);
2547
-
2548
- const layout = d3treemap()
2549
- .size([width, height])
2550
- .paddingOuter(8)
2551
- .paddingTop(20)
2552
- .paddingInner(5)
2553
- .round(true)
2554
- .tile(treemapResquarify);
2555
-
2556
- const root = hierarchy(tree)
2557
- .eachAfter((node) => {
2558
- const value = {};
2559
- for (const prop of availableSizeProperties) {
2560
- value[prop] = 0;
2561
- }
2562
-
2563
- // use node.data.children because if it is empty d3 will skip this node
2564
- // and it will look like it is actually a leaf - which technically it is but not exactly
2565
- // it is just a chunk without deps - usually just with imports
2566
- if (node.data.children != null) {
2567
- const children = node.children;
2568
- let i = node.data.children.length;
2569
- while (--i >= 0) {
2570
- for (const prop of availableSizeProperties) {
2571
- value[prop] += children[i].originalValue[prop];
2572
- }
2573
- }
2574
- } else {
2575
- for (const prop of availableSizeProperties) {
2576
- value[prop] = nodes[node.data.uid][prop];
2577
- }
2578
- }
2579
-
2580
- node.clipUid = uid("clip");
2581
- node.nodeUid = uid("node");
2582
-
2583
- node.originalValue = value;
2584
- node.value = value[sizeProperty];
2585
- })
2586
- .sort(
2587
- (a, b) => b.originalValue[sizeProperty] - a.originalValue[sizeProperty]
2588
- );
2589
-
2590
- const color = createRainbowColor(root);
2591
-
2592
- const importedByCache = new Map();
2593
- const importedCache = new Map();
2594
-
2595
- for (const { source, target } of links || []) {
2596
- if (!importedByCache.has(target)) {
2597
- importedByCache.set(target, []);
2598
- }
2599
- if (!importedCache.has(source)) {
2600
- importedCache.set(source, []);
2601
- }
2602
-
2603
- importedByCache.get(target).push({ uid: source, ...nodes[source] });
2604
- importedCache.get(source).push({ uid: target, ...nodes[target] });
2605
- }
2606
-
2607
- return m$2`
2608
- <${SideBar}
2609
- sizeProperty=${sizeProperty}
2610
- availableSizeProperties=${availableSizeProperties}
2611
- setSizeProperty=${setSizeProperty}
2612
- />
2613
- <${Chart}
2614
- layout=${layout}
2615
- root=${root}
2616
- color=${color}
2617
- width=${width}
2618
- height=${height}
2619
- sizeProperty=${sizeProperty}
2620
- availableSizeProperties=${availableSizeProperties}
2621
- importedByCache=${importedByCache}
2622
- importedCache=${importedCache}
2623
- />
2624
- `;
2625
- };
2626
-
2627
- const drawChart = (parentNode, data, width, height) => {
2628
- H(
2629
- m$2` <${Main} data=${data} width=${width} height=${height} /> `,
2630
- parentNode
2631
- );
2632
- };
2633
-
2634
- return drawChart;
2635
-
2636
- }());
2637
-
2638
- </script>
2639
- <script>
2640
- const chartParameters = {};
2641
- const data = {"version":1,"tree":{"name":"index.esm.js","children":[{"name":"src","children":[{"name":"constants","children":[{"name":"colors.js","uid":"b6dc-0"},{"name":"style_constants.js","uid":"b6dc-58"},{"name":"regex_constants.js","uid":"b6dc-92"},{"name":"index.js","uid":"b6dc-364"}]},{"name":"deprecated","children":[{"name":"icons","children":[{"name":"IconAdd.js","uid":"b6dc-1"},{"name":"IconWarn.js","uid":"b6dc-2"},{"name":"IconCheck.js","uid":"b6dc-3"},{"name":"IconCheckEmail.js","uid":"b6dc-4"},{"name":"IconEmailVerified.js","uid":"b6dc-5"},{"name":"IconEye.js","uid":"b6dc-6"},{"name":"IconEyeSlash.js","uid":"b6dc-7"},{"name":"IconChevron.js","uid":"b6dc-8"},{"name":"IconNeutral.js","uid":"b6dc-9"},{"name":"IconValid.js","uid":"b6dc-10"},{"name":"IconInvalid.js","uid":"b6dc-11"},{"name":"AlertInfoIcon.js","uid":"b6dc-12"},{"name":"AlertErrorIcon.js","uid":"b6dc-13"},{"name":"AlertSuccessIcon.js","uid":"b6dc-14"},{"name":"AlertWarningIcon.js","uid":"b6dc-15"},{"name":"IconQuit.js","uid":"b6dc-16"},{"name":"index.js","uid":"b6dc-17"}]},{"name":"spinner","children":[{"name":"Spinner.js","uid":"b6dc-88"},{"name":"index.js","uid":"b6dc-89"}]},{"name":"colors.js","uid":"b6dc-99"},{"name":"components","children":[{"name":"radio-button","children":[{"name":"radio-button.js","uid":"b6dc-100"},{"name":"index.js","uid":"b6dc-101"}]}]},{"name":"index.js","uid":"b6dc-102"}]},{"name":"components","children":[{"name":"atoms","children":[{"name":"layouts","children":[{"name":"Box.styled.js","uid":"b6dc-19"},{"name":"Box.js","uid":"b6dc-23"},{"name":"Center.styled.js","uid":"b6dc-24"},{"name":"Center.js","uid":"b6dc-25"},{"name":"Cluster.styled.js","uid":"b6dc-26"},{"name":"Cluster.js","uid":"b6dc-27"},{"name":"Grid.styled.js","uid":"b6dc-28"},{"name":"Grid.js","uid":"b6dc-29"},{"name":"Sidebar.styled.js","uid":"b6dc-30"},{"name":"Sidebar.js","uid":"b6dc-31"},{"name":"Stack.styled.js","uid":"b6dc-32"},{"name":"Stack.js","uid":"b6dc-33"},{"name":"Cover.styled.js","uid":"b6dc-34"},{"name":"Cover.js","uid":"b6dc-35"},{"name":"Frame.styled.js","uid":"b6dc-36"},{"name":"Frame.js","uid":"b6dc-37"},{"name":"Switcher.styled.js","uid":"b6dc-38"},{"name":"Switcher.js","uid":"b6dc-39"},{"name":"Imposter.styled.js","uid":"b6dc-40"},{"name":"Imposter.js","uid":"b6dc-41"},{"name":"Motion.styled.js","uid":"b6dc-51"},{"name":"Motion.js","uid":"b6dc-52"},{"name":"Reel.styled.js","uid":"b6dc-53"},{"name":"Reel.js","uid":"b6dc-54"},{"name":"index.js","uid":"b6dc-55"}]},{"name":"text","children":[{"name":"Text.theme.js","uid":"b6dc-56"},{"name":"Text.styled.js","uid":"b6dc-59"},{"name":"Text.js","uid":"b6dc-60"},{"name":"index.js","uid":"b6dc-61"}]},{"name":"alert","children":[{"name":"Alert.theme.js","uid":"b6dc-62"},{"name":"Alert.js","uid":"b6dc-63"},{"name":"index.js","uid":"b6dc-64"}]},{"name":"heading","children":[{"name":"Heading.styled.js","uid":"b6dc-65"},{"name":"Heading.theme.js","uid":"b6dc-66"},{"name":"Heading.js","uid":"b6dc-67"},{"name":"index.js","uid":"b6dc-68"}]},{"name":"amount-callout","children":[{"name":"AmountCallout.theme.js","uid":"b6dc-69"},{"name":"AmountCallout.js","uid":"b6dc-70"},{"name":"index.js","uid":"b6dc-71"}]},{"name":"breadcrumb","children":[{"name":"Breadcrumb.theme.js","uid":"b6dc-72"},{"name":"Breadcrumb.js","uid":"b6dc-79"},{"name":"index.js","uid":"b6dc-80"}]},{"name":"link","children":[{"name":"Link.theme.js","uid":"b6dc-73"},{"name":"ExternalLink.styled.js","uid":"b6dc-74"},{"name":"ExternalLink.js","uid":"b6dc-75"},{"name":"InternalLink.styled.js","uid":"b6dc-76"},{"name":"InternalLink.js","uid":"b6dc-77"},{"name":"index.js","uid":"b6dc-78"}]},{"name":"button-with-action","children":[{"name":"ButtonWithAction.theme.js","uid":"b6dc-87"},{"name":"ButtonWithAction.js","uid":"b6dc-90"},{"name":"index.js","uid":"b6dc-91"}]},{"name":"button-with-link","children":[{"name":"ButtonWithLink.js","uid":"b6dc-93"},{"name":"index.js","uid":"b6dc-94"}]},{"name":"checkbox","children":[{"name":"Checkbox.theme.js","uid":"b6dc-95"},{"name":"Checkbox.js","uid":"b6dc-96"},{"name":"index.js","uid":"b6dc-97"}]},{"name":"checkbox-list","children":[{"name":"CheckboxList.theme.js","uid":"b6dc-98"},{"name":"CheckboxList.js","uid":"b6dc-103"},{"name":"index.js","uid":"b6dc-104"}]},{"name":"dropdown","children":[{"name":"DropdownIcon.js","uid":"b6dc-129"},{"name":"Dropdown.theme.js","uid":"b6dc-130"},{"name":"Dropdown.js","uid":"b6dc-131"},{"name":"index.js","uid":"b6dc-132"}]},{"name":"form-select","children":[{"name":"FormSelect.styled.js","uid":"b6dc-133"},{"name":"FormSelect.js","uid":"b6dc-134"},{"name":"index.js","uid":"b6dc-135"}]},{"name":"country-dropdown","children":[{"name":"options.js","uid":"b6dc-136"},{"name":"CountryDropdown.js","uid":"b6dc-137"},{"name":"index.js","uid":"b6dc-138"}]},{"name":"display-box","children":[{"name":"DisplayBox.theme.js","uid":"b6dc-139"},{"name":"DisplayBox.js","uid":"b6dc-140"},{"name":"index.js","uid":"b6dc-141"}]},{"name":"paragraph","children":[{"name":"Paragraph.theme.js","uid":"b6dc-142"},{"name":"Paragraph.styled.js","uid":"b6dc-143"},{"name":"Paragraph.js","uid":"b6dc-144"},{"name":"index.js","uid":"b6dc-145"}]},{"name":"display-card","children":[{"name":"DisplayCard.js","uid":"b6dc-146"},{"name":"index.js","uid":"b6dc-147"}]},{"name":"form-layouts","children":[{"name":"FormLayouts.theme.js","uid":"b6dc-150"},{"name":"FormInput.js","uid":"b6dc-151"},{"name":"FormInputRow.js","uid":"b6dc-152"},{"name":"FormInputColumn.js","uid":"b6dc-153"},{"name":"FormContainer.js","uid":"b6dc-155"},{"name":"index.js","uid":"b6dc-156"}]},{"name":"formatted-address","children":[{"name":"FormattedAddress.theme.js","uid":"b6dc-157"},{"name":"FormattedAddress.js","uid":"b6dc-158"},{"name":"index.js","uid":"b6dc-159"}]},{"name":"icons","children":[{"name":"GenericCard.js","uid":"b6dc-160"},{"name":"Icons.theme.js","uid":"b6dc-166"},{"name":"AccountsIcon.js","uid":"b6dc-167"},{"name":"AccountsAddIcon.js","uid":"b6dc-168"},{"name":"ForgotPasswordIcon.js","uid":"b6dc-169"},{"name":"GoToEmailIcon.js","uid":"b6dc-170"},{"name":"VerifiedEmailIcon.js","uid":"b6dc-171"},{"name":"PaymentMethodIcon.js","uid":"b6dc-172"},{"name":"AccountsIconSmall.js","uid":"b6dc-173"},{"name":"PaymentsIconSmall.js","uid":"b6dc-174"},{"name":"ProfileIconSmall.js","uid":"b6dc-175"},{"name":"SettingsIconSmall.js","uid":"b6dc-176"},{"name":"ChevronIcon.js","uid":"b6dc-177"},{"name":"PropertiesAddIcon.js","uid":"b6dc-178"},{"name":"PropertiesIconSmall.js","uid":"b6dc-179"},{"name":"AccountNumberImage.js","uid":"b6dc-180"},{"name":"RoutingNumberImage.js","uid":"b6dc-181"},{"name":"CheckmarkIcon.js","uid":"b6dc-182"},{"name":"BankIcon.js","uid":"b6dc-183"},{"name":"PaymentIcon.js","uid":"b6dc-184"},{"name":"index.js","uid":"b6dc-185"}]},{"name":"formatted-credit-card","children":[{"name":"FormattedCreditCard.theme.js","uid":"b6dc-161"},{"name":"FormattedCreditCard.js","uid":"b6dc-162"},{"name":"index.js","uid":"b6dc-163"}]},{"name":"hamburger-button","children":[{"name":"HamburgerButton.js","uid":"b6dc-164"},{"name":"index.js","uid":"b6dc-165"}]},{"name":"jumbo","children":[{"name":"Jumbo.js","uid":"b6dc-186"},{"name":"index.js","uid":"b6dc-187"}]},{"name":"labeled-amount","children":[{"name":"LabeledAmount.theme.js","uid":"b6dc-188"},{"name":"LabeledAmount.js","uid":"b6dc-189"},{"name":"index.js","uid":"b6dc-190"}]},{"name":"line-item","children":[{"name":"LineItem.theme.js","uid":"b6dc-191"},{"name":"LineItem.js","uid":"b6dc-192"},{"name":"index.js","uid":"b6dc-193"}]},{"name":"spinner","children":[{"name":"Spinner.theme.js","uid":"b6dc-194"},{"name":"Spinner.js","uid":"b6dc-195"},{"name":"index.js","uid":"b6dc-196"}]},{"name":"loading","children":[{"name":"Loading.js","uid":"b6dc-197"},{"name":"index.js","uid":"b6dc-198"}]},{"name":"nav-footer","children":[{"name":"NavFooter.js","uid":"b6dc-199"},{"name":"index.js","uid":"b6dc-200"}]},{"name":"nav-header","children":[{"name":"NavHeader.js","uid":"b6dc-201"},{"name":"index.js","uid":"b6dc-202"}]},{"name":"password-requirements","children":[{"name":"PasswordRequirements.js","uid":"b6dc-204"},{"name":"index.js","uid":"b6dc-205"}]},{"name":"placeholder","children":[{"name":"Placeholder.theme.js","uid":"b6dc-206"},{"name":"Placeholder.js","uid":"b6dc-207"},{"name":"index.js","uid":"b6dc-208"}]},{"name":"processing-fee","children":[{"name":"ProcessingFee.theme.js","uid":"b6dc-209"},{"name":"ProcessingFee.js","uid":"b6dc-210"},{"name":"index.js","uid":"b6dc-211"}]},{"name":"radio-button","children":[{"name":"RadioButton.theme.js","uid":"b6dc-212"},{"name":"RadioButton.js","uid":"b6dc-213"},{"name":"index.js","uid":"b6dc-214"}]},{"name":"solid-divider","children":[{"name":"SolidDivider.theme.js","uid":"b6dc-215"},{"name":"SolidDivider.js","uid":"b6dc-216"},{"name":"index.js","uid":"b6dc-217"}]},{"name":"state-province-dropdown","children":[{"name":"options.js","uid":"b6dc-218"},{"name":"StateProvinceDropdown.js","uid":"b6dc-219"},{"name":"index.js","uid":"b6dc-220"}]},{"name":"toggle-switch","children":[{"name":"ToggleSwitch.theme.js","uid":"b6dc-221"},{"name":"ToggleSwitch.js","uid":"b6dc-222"},{"name":"index.js","uid":"b6dc-223"}]},{"name":"index.js","uid":"b6dc-224"}]},{"name":"withWindowSize.js","uid":"b6dc-154"},{"name":"molecules","children":[{"name":"address-form","children":[{"name":"AddressForm.js","uid":"b6dc-227"},{"name":"AddressForm.state.js","uid":"b6dc-228"},{"name":"index.js","uid":"b6dc-229"}]},{"name":"change-password-form","children":[{"name":"ChangePasswordForm.js","uid":"b6dc-230"},{"name":"ChangePasswordForm.state.js","uid":"b6dc-231"},{"name":"index.js","uid":"b6dc-232"}]},{"name":"collapsible-section","children":[{"name":"CollapsibleSection.theme.js","uid":"b6dc-233"},{"name":"CollapsibleSection.js","uid":"b6dc-234"},{"name":"index.js","uid":"b6dc-235"}]},{"name":"edit-name-form","children":[{"name":"EditNameForm.js","uid":"b6dc-236"},{"name":"EditNameForm.state.js","uid":"b6dc-237"},{"name":"index.js","uid":"b6dc-238"}]},{"name":"editable-list","children":[{"name":"EditableList.styled.js","uid":"b6dc-239"},{"name":"EditableList.js","uid":"b6dc-240"},{"name":"index.js","uid":"b6dc-241"}]},{"name":"editable-table","children":[{"name":"EditableTable.styled.js","uid":"b6dc-242"},{"name":"EditableTable.js","uid":"b6dc-243"},{"name":"TableListItem.js","uid":"b6dc-244"},{"name":"index.js","uid":"b6dc-245"}]},{"name":"email-form","children":[{"name":"EmailForm.js","uid":"b6dc-246"},{"name":"EmailForm.state.js","uid":"b6dc-247"},{"name":"index.js","uid":"b6dc-248"}]},{"name":"forgot-password-form","children":[{"name":"ForgotPasswordForm.js","uid":"b6dc-249"},{"name":"ForgotPasswordForm.state.js","uid":"b6dc-250"},{"name":"index.js","uid":"b6dc-251"}]},{"name":"highlight-tab-row","children":[{"name":"HighlightTabRow.js","uid":"b6dc-252"},{"name":"HighlightTabRow.theme.js","uid":"b6dc-253"},{"name":"index.js","uid":"b6dc-254"}]},{"name":"login-form","children":[{"name":"LoginForm.js","uid":"b6dc-255"},{"name":"LoginForm.state.js","uid":"b6dc-256"},{"name":"index.js","uid":"b6dc-257"}]},{"name":"modal","children":[{"name":"Modal.js","uid":"b6dc-272"},{"name":"index.js","uid":"b6dc-273"}]},{"name":"module","children":[{"name":"Module.js","uid":"b6dc-274"},{"name":"Module.theme.js","uid":"b6dc-275"},{"name":"index.js","uid":"b6dc-276"}]},{"name":"nav-menu","children":[{"name":"NavMenu.theme.js","uid":"b6dc-277"},{"name":"NavMenuDesktop.js","uid":"b6dc-278"},{"name":"NavMenuMobile.js","uid":"b6dc-279"},{"name":"index.js","uid":"b6dc-280"}]},{"name":"obligation","children":[{"name":"icons","children":[{"name":"AccountBillIcon.js","uid":"b6dc-281"},{"name":"AccountGenericIcon.js","uid":"b6dc-282"},{"name":"AccountConstructionIcon.js","uid":"b6dc-283"},{"name":"AccountDentalIcon.js","uid":"b6dc-284"},{"name":"AccountElectricIcon.js","uid":"b6dc-285"},{"name":"AccountGarbageIcon.js","uid":"b6dc-286"},{"name":"AccountGasIcon.js","uid":"b6dc-287"},{"name":"AccountMedicalIcon.js","uid":"b6dc-288"},{"name":"AccountWaterIcon.js","uid":"b6dc-289"},{"name":"PropertyApartmentIcon.js","uid":"b6dc-290"},{"name":"PropertyBusinessIcon.js","uid":"b6dc-291"},{"name":"PropertyCarIcon.js","uid":"b6dc-292"},{"name":"PropertyCommercialVehicleIcon.js","uid":"b6dc-293"},{"name":"PropertyGarageIcon.js","uid":"b6dc-294"},{"name":"PropertyLandIcon.js","uid":"b6dc-295"},{"name":"PropertyMotorcycleIcon.js","uid":"b6dc-296"},{"name":"PropertyStorefrontIcon.js","uid":"b6dc-297"},{"name":"PropertyPersonalIcon.js","uid":"b6dc-298"},{"name":"index.js","uid":"b6dc-299"}]},{"name":"modules","children":[{"name":"IconModule.js","uid":"b6dc-300"},{"name":"TitleModule.js","uid":"b6dc-301"},{"name":"AmountModule.js","uid":"b6dc-302"},{"name":"PaymentDetailsActions.js","uid":"b6dc-303"},{"name":"index.js","uid":"b6dc-304"}]},{"name":"Obligation.js","uid":"b6dc-305"},{"name":"index.js","uid":"b6dc-306"}]},{"name":"partial-amount-form","children":[{"name":"PartialAmountForm.js","uid":"b6dc-307"},{"name":"PartialAmountForm.state.js","uid":"b6dc-308"},{"name":"index.js","uid":"b6dc-309"}]},{"name":"payment-button-bar","children":[{"name":"PaymentButtonBar.js","uid":"b6dc-310"},{"name":"index.js","uid":"b6dc-311"}]},{"name":"payment-details","children":[{"name":"PaymentDetails.theme.js","uid":"b6dc-312"},{"name":"PaymentDetails.js","uid":"b6dc-313"},{"name":"index.js","uid":"b6dc-314"}]},{"name":"account-and-routing-modal","children":[{"name":"AccountAndRoutingModal.theme.js","uid":"b6dc-315"},{"name":"AccountAndRoutingModal.js","uid":"b6dc-316"},{"name":"index.js","uid":"b6dc-317"}]},{"name":"payment-form-ach","children":[{"name":"PaymentFormACH.js","uid":"b6dc-318"},{"name":"PaymentFormACH.state.js","uid":"b6dc-319"},{"name":"index.js","uid":"b6dc-320"}]},{"name":"payment-form-card","children":[{"name":"PaymentFormCard.js","uid":"b6dc-321"},{"name":"PaymentFormCard.state.js","uid":"b6dc-322"},{"name":"index.js","uid":"b6dc-323"}]},{"name":"phone-form","children":[{"name":"PhoneForm.js","uid":"b6dc-324"},{"name":"PhoneForm.state.js","uid":"b6dc-325"},{"name":"index.js","uid":"b6dc-326"}]},{"name":"radio-section","children":[{"name":"RadioSection.theme.js","uid":"b6dc-327"},{"name":"RadioSection.js","uid":"b6dc-328"},{"name":"index.js","uid":"b6dc-329"}]},{"name":"registration-form","children":[{"name":"RegistrationForm.js","uid":"b6dc-330"},{"name":"RegistrationForm.state.js","uid":"b6dc-331"},{"name":"index.js","uid":"b6dc-332"}]},{"name":"reset-confirmation-form","children":[{"name":"ResetConfirmationForm.js","uid":"b6dc-333"},{"name":"index.js","uid":"b6dc-334"}]},{"name":"reset-password-form","children":[{"name":"ResetPasswordForm.js","uid":"b6dc-335"},{"name":"ResetPasswordForm.state.js","uid":"b6dc-336"},{"name":"index.js","uid":"b6dc-337"}]},{"name":"reset-password-success","children":[{"name":"ResetPasswordSuccess.js","uid":"b6dc-338"},{"name":"index.js","uid":"b6dc-339"}]},{"name":"tab-sidebar","children":[{"name":"TabSidebar.theme.js","uid":"b6dc-340"},{"name":"TabSidebar.js","uid":"b6dc-341"},{"name":"index.js","uid":"b6dc-342"}]},{"name":"terms-and-conditions-modal","children":[{"name":"TermsAndConditionsModal.theme.js","uid":"b6dc-343"},{"name":"TermsAndConditionsModal.js","uid":"b6dc-344"},{"name":"index.js","uid":"b6dc-345"}]},{"name":"terms-and-conditions","children":[{"name":"TermsAndConditions.js","uid":"b6dc-346"},{"name":"index.js","uid":"b6dc-347"}]},{"name":"workflow-tile","children":[{"name":"WorkflowTile.js","uid":"b6dc-348"},{"name":"index.js","uid":"b6dc-349"}]},{"name":"index.js","uid":"b6dc-350"}]},{"name":"templates","children":[{"name":"templates.theme.js","uid":"b6dc-351"},{"name":"center-single","children":[{"name":"CenterSingle.js","uid":"b6dc-352"},{"name":"index.js","uid":"b6dc-353"}]},{"name":"center-stack","children":[{"name":"CenterStack.js","uid":"b6dc-354"},{"name":"index.js","uid":"b6dc-355"}]},{"name":"default-page-template","children":[{"name":"DefaultPageTemplate.js","uid":"b6dc-356"},{"name":"index.js","uid":"b6dc-357"}]},{"name":"sidebar-single-content","children":[{"name":"SidebarSingleContent.js","uid":"b6dc-358"},{"name":"index.js","uid":"b6dc-359"}]},{"name":"sidebar-stack-content","children":[{"name":"SidebarStackContent.js","uid":"b6dc-360"},{"name":"index.js","uid":"b6dc-361"}]},{"name":"index.js","uid":"b6dc-362"}]},{"name":"index.js","uid":"b6dc-363"}]},{"name":"util","children":[{"name":"general.js","uid":"b6dc-22"},{"name":"themeUtils.js","uid":"b6dc-57"},{"name":"inputValidationUtils.js","uid":"b6dc-203"},{"name":"formats.js","uid":"b6dc-226"},{"name":"index.js","uid":"b6dc-365"}]},{"name":"index.js","uid":"b6dc-366"}]},{"name":"node_modules","children":[{"name":"numeral","children":[{"name":"numeral.js","uid":"b6dc-21"}]},{"name":"tslib","children":[{"name":"tslib.es6.js","uid":"b6dc-42"}]},{"name":"hey-listen","children":[{"name":"dist","children":[{"name":"hey-listen.es.js","uid":"b6dc-43"}]}]},{"name":"framesync","children":[{"name":"dist","children":[{"name":"framesync.es.js","uid":"b6dc-44"}]}]},{"name":"style-value-types","children":[{"name":"dist","children":[{"name":"style-value-types.es.js","uid":"b6dc-45"}]}]},{"name":"@popmotion","children":[{"name":"easing","children":[{"name":"dist","children":[{"name":"easing.es.js","uid":"b6dc-46"}]}]},{"name":"popcorn","children":[{"name":"dist","children":[{"name":"popcorn.es.js","uid":"b6dc-47"}]}]}]},{"name":"stylefire","children":[{"name":"dist","children":[{"name":"stylefire.es.js","uid":"b6dc-48"}]}]},{"name":"popmotion","children":[{"name":"dist","children":[{"name":"popmotion.es.js","uid":"b6dc-49"}]}]},{"name":"framer-motion","children":[{"name":"dist","children":[{"name":"framer-motion.es.js","uid":"b6dc-50"}]}]},{"name":"popmotion-pose","children":[{"name":"node_modules","children":[{"name":"popmotion","children":[{"name":"dist","children":[{"name":"popmotion.es.js","uid":"b6dc-81"}]}]}]},{"name":"dist","children":[{"name":"popmotion-pose.es.js","uid":"b6dc-83"}]}]},{"name":"pose-core","children":[{"name":"dist","children":[{"name":"pose-core.es.js","uid":"b6dc-82"}]}]},{"name":"react-pose","children":[{"name":"node_modules","children":[{"name":"@emotion","children":[{"name":"memoize","children":[{"name":"dist","children":[{"name":"memoize.esm.js","uid":"b6dc-84"}]}]},{"name":"is-prop-valid","children":[{"name":"dist","children":[{"name":"is-prop-valid.esm.js","uid":"b6dc-85"}]}]}]}]},{"name":"dist","children":[{"name":"react-pose.es.js","uid":"b6dc-86"}]}]},{"name":"util","children":[{"name":"support","children":[{"name":"isBuffer.js","uid":"b6dc-105"}]},{"name":"node_modules","children":[{"name":"inherits","children":[{"name":"inherits_browser.js","uid":"b6dc-106"},{"name":"inherits.js","uid":"b6dc-109"}]}]},{"name":"util.js","uid":"b6dc-112"}]},{"name":"sanctuary-show","children":[{"name":"index.js","uid":"b6dc-113"}]},{"name":"sanctuary-type-identifiers","children":[{"name":"index.js","uid":"b6dc-114"}]},{"name":"sanctuary-type-classes","children":[{"name":"index.js","uid":"b6dc-116"}]},{"name":"sanctuary-either","children":[{"name":"index.js","uid":"b6dc-119"}]},{"name":"sanctuary-def","children":[{"name":"index.js","uid":"b6dc-121"}]},{"name":"sanctuary-maybe","children":[{"name":"index.js","uid":"b6dc-122"}]},{"name":"sanctuary-pair","children":[{"name":"index.js","uid":"b6dc-123"}]},{"name":"sanctuary","children":[{"name":"index.js","uid":"b6dc-128"}]},{"name":"formatted-input","children":[{"name":"src","children":[{"name":"index.js","uid":"b6dc-149"}]}]},{"name":"redux-freeform","children":[{"name":"dist","children":[{"name":"redux-freeform.esm.js","uid":"b6dc-225"}]}]},{"name":"tabbable","children":[{"name":"index.js","uid":"b6dc-258"}]},{"name":"xtend","children":[{"name":"immutable.js","uid":"b6dc-259"}]},{"name":"focus-trap","children":[{"name":"index.js","uid":"b6dc-262"}]},{"name":"focus-trap-react","children":[{"name":"dist","children":[{"name":"focus-trap-react.js","uid":"b6dc-265"}]}]},{"name":"react-displace","children":[{"name":"dist","children":[{"name":"displace.js","uid":"b6dc-266"}]}]},{"name":"no-scroll","children":[{"name":"index.js","uid":"b6dc-267"}]},{"name":"react-aria-modal","children":[{"name":"dist","children":[{"name":"react-aria-modal.js","uid":"b6dc-271"}]}]}]},{"name":"\u0000rollupPluginBabelHelpers.js","uid":"b6dc-18"},{"name":"\u0000commonjsHelpers.js","uid":"b6dc-20"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/util/util.js?commonjs-proxy","uid":"b6dc-107"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/util/node_modules/inherits/inherits_browser.js?commonjs-proxy","uid":"b6dc-108"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/util/support/isBuffer.js?commonjs-proxy","uid":"b6dc-110"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/util/node_modules/inherits/inherits.js?commonjs-proxy","uid":"b6dc-111"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary-type-identifiers/index.js?commonjs-proxy","uid":"b6dc-115"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary-show/index.js?commonjs-proxy","uid":"b6dc-117"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary-type-classes/index.js?commonjs-proxy","uid":"b6dc-118"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary-either/index.js?commonjs-proxy","uid":"b6dc-120"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary-def/index.js?commonjs-proxy","uid":"b6dc-124"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary-maybe/index.js?commonjs-proxy","uid":"b6dc-125"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary-pair/index.js?commonjs-proxy","uid":"b6dc-126"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary/index.js?commonjs-proxy","uid":"b6dc-127"},{"name":"\u0000react?commonjs-external","uid":"b6dc-148"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/tabbable/index.js?commonjs-proxy","uid":"b6dc-260"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/xtend/immutable.js?commonjs-proxy","uid":"b6dc-261"},{"name":"\u0000react-dom?commonjs-external","uid":"b6dc-263"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/focus-trap/index.js?commonjs-proxy","uid":"b6dc-264"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/focus-trap-react/dist/focus-trap-react.js?commonjs-proxy","uid":"b6dc-268"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/react-displace/dist/displace.js?commonjs-proxy","uid":"b6dc-269"},{"name":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/no-scroll/index.js?commonjs-proxy","uid":"b6dc-270"}]},"nodes":{"b6dc-0":{"renderedLength":2936,"id":"src/constants/colors.js"},"b6dc-1":{"renderedLength":1887,"id":"src/deprecated/icons/IconAdd.js"},"b6dc-2":{"renderedLength":0,"id":"src/deprecated/icons/IconWarn.js"},"b6dc-3":{"renderedLength":0,"id":"src/deprecated/icons/IconCheck.js"},"b6dc-4":{"renderedLength":0,"id":"src/deprecated/icons/IconCheckEmail.js"},"b6dc-5":{"renderedLength":0,"id":"src/deprecated/icons/IconEmailVerified.js"},"b6dc-6":{"renderedLength":0,"id":"src/deprecated/icons/IconEye.js"},"b6dc-7":{"renderedLength":0,"id":"src/deprecated/icons/IconEyeSlash.js"},"b6dc-8":{"renderedLength":1313,"id":"src/deprecated/icons/IconChevron.js"},"b6dc-9":{"renderedLength":1106,"id":"src/deprecated/icons/IconNeutral.js"},"b6dc-10":{"renderedLength":2174,"id":"src/deprecated/icons/IconValid.js"},"b6dc-11":{"renderedLength":2371,"id":"src/deprecated/icons/IconInvalid.js"},"b6dc-12":{"renderedLength":1356,"id":"src/deprecated/icons/AlertInfoIcon.js"},"b6dc-13":{"renderedLength":1412,"id":"src/deprecated/icons/AlertErrorIcon.js"},"b6dc-14":{"renderedLength":1402,"id":"src/deprecated/icons/AlertSuccessIcon.js"},"b6dc-15":{"renderedLength":1378,"id":"src/deprecated/icons/AlertWarningIcon.js"},"b6dc-16":{"renderedLength":1420,"id":"src/deprecated/icons/IconQuit.js"},"b6dc-17":{"renderedLength":123,"id":"src/deprecated/icons/index.js"},"b6dc-18":{"renderedLength":5323,"id":"\u0000rollupPluginBabelHelpers.js"},"b6dc-19":{"renderedLength":6256,"id":"src/components/atoms/layouts/Box.styled.js"},"b6dc-20":{"renderedLength":449,"id":"\u0000commonjsHelpers.js"},"b6dc-21":{"renderedLength":33471,"id":"node_modules/numeral/numeral.js"},"b6dc-22":{"renderedLength":1451,"id":"src/util/general.js"},"b6dc-23":{"renderedLength":2972,"id":"src/components/atoms/layouts/Box.js"},"b6dc-24":{"renderedLength":749,"id":"src/components/atoms/layouts/Center.styled.js"},"b6dc-25":{"renderedLength":786,"id":"src/components/atoms/layouts/Center.js"},"b6dc-26":{"renderedLength":1260,"id":"src/components/atoms/layouts/Cluster.styled.js"},"b6dc-27":{"renderedLength":1169,"id":"src/components/atoms/layouts/Cluster.js"},"b6dc-28":{"renderedLength":1046,"id":"src/components/atoms/layouts/Grid.styled.js"},"b6dc-29":{"renderedLength":1370,"id":"src/components/atoms/layouts/Grid.js"},"b6dc-30":{"renderedLength":1748,"id":"src/components/atoms/layouts/Sidebar.styled.js"},"b6dc-31":{"renderedLength":1769,"id":"src/components/atoms/layouts/Sidebar.js"},"b6dc-32":{"renderedLength":1168,"id":"src/components/atoms/layouts/Stack.styled.js"},"b6dc-33":{"renderedLength":1167,"id":"src/components/atoms/layouts/Stack.js"},"b6dc-34":{"renderedLength":1144,"id":"src/components/atoms/layouts/Cover.styled.js"},"b6dc-35":{"renderedLength":2086,"id":"src/components/atoms/layouts/Cover.js"},"b6dc-36":{"renderedLength":760,"id":"src/components/atoms/layouts/Frame.styled.js"},"b6dc-37":{"renderedLength":1217,"id":"src/components/atoms/layouts/Frame.js"},"b6dc-38":{"renderedLength":2030,"id":"src/components/atoms/layouts/Switcher.styled.js"},"b6dc-39":{"renderedLength":2807,"id":"src/components/atoms/layouts/Switcher.js"},"b6dc-40":{"renderedLength":1056,"id":"src/components/atoms/layouts/Imposter.styled.js"},"b6dc-41":{"renderedLength":2584,"id":"src/components/atoms/layouts/Imposter.js"},"b6dc-42":{"renderedLength":2470,"id":"node_modules/tslib/tslib.es6.js"},"b6dc-43":{"renderedLength":394,"id":"node_modules/hey-listen/dist/hey-listen.es.js"},"b6dc-44":{"renderedLength":4789,"id":"node_modules/framesync/dist/framesync.es.js"},"b6dc-45":{"renderedLength":8952,"id":"node_modules/style-value-types/dist/style-value-types.es.js"},"b6dc-46":{"renderedLength":5419,"id":"node_modules/@popmotion/easing/dist/easing.es.js"},"b6dc-47":{"renderedLength":13189,"id":"node_modules/@popmotion/popcorn/dist/popcorn.es.js"},"b6dc-48":{"renderedLength":18553,"id":"node_modules/stylefire/dist/stylefire.es.js"},"b6dc-49":{"renderedLength":23049,"id":"node_modules/popmotion/dist/popmotion.es.js"},"b6dc-50":{"renderedLength":168706,"id":"node_modules/framer-motion/dist/framer-motion.es.js"},"b6dc-51":{"renderedLength":2519,"id":"src/components/atoms/layouts/Motion.styled.js"},"b6dc-52":{"renderedLength":1786,"id":"src/components/atoms/layouts/Motion.js"},"b6dc-53":{"renderedLength":890,"id":"src/components/atoms/layouts/Reel.styled.js"},"b6dc-54":{"renderedLength":1209,"id":"src/components/atoms/layouts/Reel.js"},"b6dc-55":{"renderedLength":0,"id":"src/components/atoms/layouts/index.js"},"b6dc-56":{"renderedLength":409,"id":"src/components/atoms/text/Text.theme.js"},"b6dc-57":{"renderedLength":5928,"id":"src/util/themeUtils.js"},"b6dc-58":{"renderedLength":303,"id":"src/constants/style_constants.js"},"b6dc-59":{"renderedLength":1780,"id":"src/components/atoms/text/Text.styled.js"},"b6dc-60":{"renderedLength":1180,"id":"src/components/atoms/text/Text.js"},"b6dc-61":{"renderedLength":0,"id":"src/components/atoms/text/index.js"},"b6dc-62":{"renderedLength":1073,"id":"src/components/atoms/alert/Alert.theme.js"},"b6dc-63":{"renderedLength":2144,"id":"src/components/atoms/alert/Alert.js"},"b6dc-64":{"renderedLength":0,"id":"src/components/atoms/alert/index.js"},"b6dc-65":{"renderedLength":939,"id":"src/components/atoms/heading/Heading.styled.js"},"b6dc-66":{"renderedLength":273,"id":"src/components/atoms/heading/Heading.theme.js"},"b6dc-67":{"renderedLength":1303,"id":"src/components/atoms/heading/Heading.js"},"b6dc-68":{"renderedLength":0,"id":"src/components/atoms/heading/index.js"},"b6dc-69":{"renderedLength":281,"id":"src/components/atoms/amount-callout/AmountCallout.theme.js"},"b6dc-70":{"renderedLength":568,"id":"src/components/atoms/amount-callout/AmountCallout.js"},"b6dc-71":{"renderedLength":0,"id":"src/components/atoms/amount-callout/index.js"},"b6dc-72":{"renderedLength":628,"id":"src/components/atoms/breadcrumb/Breadcrumb.theme.js"},"b6dc-73":{"renderedLength":129,"id":"src/components/atoms/link/Link.theme.js"},"b6dc-74":{"renderedLength":1348,"id":"src/components/atoms/link/ExternalLink.styled.js"},"b6dc-75":{"renderedLength":1674,"id":"src/components/atoms/link/ExternalLink.js"},"b6dc-76":{"renderedLength":2132,"id":"src/components/atoms/link/InternalLink.styled.js"},"b6dc-77":{"renderedLength":1321,"id":"src/components/atoms/link/InternalLink.js"},"b6dc-78":{"renderedLength":0,"id":"src/components/atoms/link/index.js"},"b6dc-79":{"renderedLength":1510,"id":"src/components/atoms/breadcrumb/Breadcrumb.js"},"b6dc-80":{"renderedLength":0,"id":"src/components/atoms/breadcrumb/index.js"},"b6dc-81":{"renderedLength":39695,"id":"node_modules/popmotion-pose/node_modules/popmotion/dist/popmotion.es.js"},"b6dc-82":{"renderedLength":20250,"id":"node_modules/pose-core/dist/pose-core.es.js"},"b6dc-83":{"renderedLength":27931,"id":"node_modules/popmotion-pose/dist/popmotion-pose.es.js"},"b6dc-84":{"renderedLength":152,"id":"node_modules/react-pose/node_modules/@emotion/memoize/dist/memoize.esm.js"},"b6dc-85":{"renderedLength":4226,"id":"node_modules/react-pose/node_modules/@emotion/is-prop-valid/dist/is-prop-valid.esm.js"},"b6dc-86":{"renderedLength":18905,"id":"node_modules/react-pose/dist/react-pose.es.js"},"b6dc-87":{"renderedLength":4053,"id":"src/components/atoms/button-with-action/ButtonWithAction.theme.js"},"b6dc-88":{"renderedLength":3031,"id":"src/deprecated/spinner/Spinner.js"},"b6dc-89":{"renderedLength":0,"id":"src/deprecated/spinner/index.js"},"b6dc-90":{"renderedLength":4259,"id":"src/components/atoms/button-with-action/ButtonWithAction.js"},"b6dc-91":{"renderedLength":0,"id":"src/components/atoms/button-with-action/index.js"},"b6dc-92":{"renderedLength":103,"id":"src/constants/regex_constants.js"},"b6dc-93":{"renderedLength":1371,"id":"src/components/atoms/button-with-link/ButtonWithLink.js"},"b6dc-94":{"renderedLength":0,"id":"src/components/atoms/button-with-link/index.js"},"b6dc-95":{"renderedLength":1358,"id":"src/components/atoms/checkbox/Checkbox.theme.js"},"b6dc-96":{"renderedLength":5947,"id":"src/components/atoms/checkbox/Checkbox.js"},"b6dc-97":{"renderedLength":0,"id":"src/components/atoms/checkbox/index.js"},"b6dc-98":{"renderedLength":883,"id":"src/components/atoms/checkbox-list/CheckboxList.theme.js"},"b6dc-99":{"renderedLength":310,"id":"src/deprecated/colors.js"},"b6dc-100":{"renderedLength":1475,"id":"src/deprecated/components/radio-button/radio-button.js"},"b6dc-101":{"renderedLength":0,"id":"src/deprecated/components/radio-button/index.js"},"b6dc-102":{"renderedLength":0,"id":"src/deprecated/index.js"},"b6dc-103":{"renderedLength":4426,"id":"src/components/atoms/checkbox-list/CheckboxList.js"},"b6dc-104":{"renderedLength":0,"id":"src/components/atoms/checkbox-list/index.js"},"b6dc-105":{"renderedLength":74,"id":"node_modules/util/support/isBuffer.js"},"b6dc-106":{"renderedLength":746,"id":"node_modules/util/node_modules/inherits/inherits_browser.js"},"b6dc-107":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/util/util.js?commonjs-proxy"},"b6dc-108":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/util/node_modules/inherits/inherits_browser.js?commonjs-proxy"},"b6dc-109":{"renderedLength":230,"id":"node_modules/util/node_modules/inherits/inherits.js"},"b6dc-110":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/util/support/isBuffer.js?commonjs-proxy"},"b6dc-111":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/util/node_modules/inherits/inherits.js?commonjs-proxy"},"b6dc-112":{"renderedLength":20059,"id":"node_modules/util/util.js"},"b6dc-113":{"renderedLength":4863,"id":"node_modules/sanctuary-show/index.js"},"b6dc-114":{"renderedLength":5681,"id":"node_modules/sanctuary-type-identifiers/index.js"},"b6dc-115":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary-type-identifiers/index.js?commonjs-proxy"},"b6dc-116":{"renderedLength":69745,"id":"node_modules/sanctuary-type-classes/index.js"},"b6dc-117":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary-show/index.js?commonjs-proxy"},"b6dc-118":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary-type-classes/index.js?commonjs-proxy"},"b6dc-119":{"renderedLength":16746,"id":"node_modules/sanctuary-either/index.js"},"b6dc-120":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary-either/index.js?commonjs-proxy"},"b6dc-121":{"renderedLength":93099,"id":"node_modules/sanctuary-def/index.js"},"b6dc-122":{"renderedLength":15741,"id":"node_modules/sanctuary-maybe/index.js"},"b6dc-123":{"renderedLength":11668,"id":"node_modules/sanctuary-pair/index.js"},"b6dc-124":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary-def/index.js?commonjs-proxy"},"b6dc-125":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary-maybe/index.js?commonjs-proxy"},"b6dc-126":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary-pair/index.js?commonjs-proxy"},"b6dc-127":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/sanctuary/index.js?commonjs-proxy"},"b6dc-128":{"renderedLength":139090,"id":"node_modules/sanctuary/index.js"},"b6dc-129":{"renderedLength":816,"id":"src/components/atoms/dropdown/DropdownIcon.js"},"b6dc-130":{"renderedLength":179,"id":"src/components/atoms/dropdown/Dropdown.theme.js"},"b6dc-131":{"renderedLength":9254,"id":"src/components/atoms/dropdown/Dropdown.js"},"b6dc-132":{"renderedLength":0,"id":"src/components/atoms/dropdown/index.js"},"b6dc-133":{"renderedLength":2256,"id":"src/components/atoms/form-select/FormSelect.styled.js"},"b6dc-134":{"renderedLength":1724,"id":"src/components/atoms/form-select/FormSelect.js"},"b6dc-135":{"renderedLength":0,"id":"src/components/atoms/form-select/index.js"},"b6dc-136":{"renderedLength":10338,"id":"src/components/atoms/country-dropdown/options.js"},"b6dc-137":{"renderedLength":556,"id":"src/components/atoms/country-dropdown/CountryDropdown.js"},"b6dc-138":{"renderedLength":0,"id":"src/components/atoms/country-dropdown/index.js"},"b6dc-139":{"renderedLength":217,"id":"src/components/atoms/display-box/DisplayBox.theme.js"},"b6dc-140":{"renderedLength":576,"id":"src/components/atoms/display-box/DisplayBox.js"},"b6dc-141":{"renderedLength":0,"id":"src/components/atoms/display-box/index.js"},"b6dc-142":{"renderedLength":277,"id":"src/components/atoms/paragraph/Paragraph.theme.js"},"b6dc-143":{"renderedLength":841,"id":"src/components/atoms/paragraph/Paragraph.styled.js"},"b6dc-144":{"renderedLength":1042,"id":"src/components/atoms/paragraph/Paragraph.js"},"b6dc-145":{"renderedLength":0,"id":"src/components/atoms/paragraph/index.js"},"b6dc-146":{"renderedLength":1442,"id":"src/components/atoms/display-card/DisplayCard.js"},"b6dc-147":{"renderedLength":0,"id":"src/components/atoms/display-card/index.js"},"b6dc-148":{"renderedLength":0,"id":"\u0000react?commonjs-external"},"b6dc-149":{"renderedLength":10743,"id":"node_modules/formatted-input/src/index.js"},"b6dc-150":{"renderedLength":1462,"id":"src/components/atoms/form-layouts/FormLayouts.theme.js"},"b6dc-151":{"renderedLength":7908,"id":"src/components/atoms/form-layouts/FormInput.js"},"b6dc-152":{"renderedLength":766,"id":"src/components/atoms/form-layouts/FormInputRow.js"},"b6dc-153":{"renderedLength":452,"id":"src/components/atoms/form-layouts/FormInputColumn.js"},"b6dc-154":{"renderedLength":1529,"id":"src/components/withWindowSize.js"},"b6dc-155":{"renderedLength":597,"id":"src/components/atoms/form-layouts/FormContainer.js"},"b6dc-156":{"renderedLength":0,"id":"src/components/atoms/form-layouts/index.js"},"b6dc-157":{"renderedLength":307,"id":"src/components/atoms/formatted-address/FormattedAddress.theme.js"},"b6dc-158":{"renderedLength":1604,"id":"src/components/atoms/formatted-address/FormattedAddress.js"},"b6dc-159":{"renderedLength":0,"id":"src/components/atoms/formatted-address/index.js"},"b6dc-160":{"renderedLength":1000,"id":"src/components/atoms/icons/GenericCard.js"},"b6dc-161":{"renderedLength":180,"id":"src/components/atoms/formatted-credit-card/FormattedCreditCard.theme.js"},"b6dc-162":{"renderedLength":1530,"id":"src/components/atoms/formatted-credit-card/FormattedCreditCard.js"},"b6dc-163":{"renderedLength":0,"id":"src/components/atoms/formatted-credit-card/index.js"},"b6dc-164":{"renderedLength":3576,"id":"src/components/atoms/hamburger-button/HamburgerButton.js"},"b6dc-165":{"renderedLength":0,"id":"src/components/atoms/hamburger-button/index.js"},"b6dc-166":{"renderedLength":626,"id":"src/components/atoms/icons/Icons.theme.js"},"b6dc-167":{"renderedLength":2938,"id":"src/components/atoms/icons/AccountsIcon.js"},"b6dc-168":{"renderedLength":3599,"id":"src/components/atoms/icons/AccountsAddIcon.js"},"b6dc-169":{"renderedLength":2914,"id":"src/components/atoms/icons/ForgotPasswordIcon.js"},"b6dc-170":{"renderedLength":4416,"id":"src/components/atoms/icons/GoToEmailIcon.js"},"b6dc-171":{"renderedLength":2808,"id":"src/components/atoms/icons/VerifiedEmailIcon.js"},"b6dc-172":{"renderedLength":3903,"id":"src/components/atoms/icons/PaymentMethodIcon.js"},"b6dc-173":{"renderedLength":2943,"id":"src/components/atoms/icons/AccountsIconSmall.js"},"b6dc-174":{"renderedLength":5726,"id":"src/components/atoms/icons/PaymentsIconSmall.js"},"b6dc-175":{"renderedLength":3016,"id":"src/components/atoms/icons/ProfileIconSmall.js"},"b6dc-176":{"renderedLength":4863,"id":"src/components/atoms/icons/SettingsIconSmall.js"},"b6dc-177":{"renderedLength":1472,"id":"src/components/atoms/icons/ChevronIcon.js"},"b6dc-178":{"renderedLength":9286,"id":"src/components/atoms/icons/PropertiesAddIcon.js"},"b6dc-179":{"renderedLength":1664,"id":"src/components/atoms/icons/PropertiesIconSmall.js"},"b6dc-180":{"renderedLength":27813,"id":"src/components/atoms/icons/AccountNumberImage.js"},"b6dc-181":{"renderedLength":27812,"id":"src/components/atoms/icons/RoutingNumberImage.js"},"b6dc-182":{"renderedLength":1655,"id":"src/components/atoms/icons/CheckmarkIcon.js"},"b6dc-183":{"renderedLength":2308,"id":"src/components/atoms/icons/BankIcon.js"},"b6dc-184":{"renderedLength":1600,"id":"src/components/atoms/icons/PaymentIcon.js"},"b6dc-185":{"renderedLength":0,"id":"src/components/atoms/icons/index.js"},"b6dc-186":{"renderedLength":1887,"id":"src/components/atoms/jumbo/Jumbo.js"},"b6dc-187":{"renderedLength":0,"id":"src/components/atoms/jumbo/index.js"},"b6dc-188":{"renderedLength":135,"id":"src/components/atoms/labeled-amount/LabeledAmount.theme.js"},"b6dc-189":{"renderedLength":837,"id":"src/components/atoms/labeled-amount/LabeledAmount.js"},"b6dc-190":{"renderedLength":0,"id":"src/components/atoms/labeled-amount/index.js"},"b6dc-191":{"renderedLength":210,"id":"src/components/atoms/line-item/LineItem.theme.js"},"b6dc-192":{"renderedLength":883,"id":"src/components/atoms/line-item/LineItem.js"},"b6dc-193":{"renderedLength":0,"id":"src/components/atoms/line-item/index.js"},"b6dc-194":{"renderedLength":69,"id":"src/components/atoms/spinner/Spinner.theme.js"},"b6dc-195":{"renderedLength":1921,"id":"src/components/atoms/spinner/Spinner.js"},"b6dc-196":{"renderedLength":0,"id":"src/components/atoms/spinner/index.js"},"b6dc-197":{"renderedLength":396,"id":"src/components/atoms/loading/Loading.js"},"b6dc-198":{"renderedLength":0,"id":"src/components/atoms/loading/index.js"},"b6dc-199":{"renderedLength":1978,"id":"src/components/atoms/nav-footer/NavFooter.js"},"b6dc-200":{"renderedLength":0,"id":"src/components/atoms/nav-footer/index.js"},"b6dc-201":{"renderedLength":1310,"id":"src/components/atoms/nav-header/NavHeader.js"},"b6dc-202":{"renderedLength":0,"id":"src/components/atoms/nav-header/index.js"},"b6dc-203":{"renderedLength":8448,"id":"src/util/inputValidationUtils.js"},"b6dc-204":{"renderedLength":2931,"id":"src/components/atoms/password-requirements/PasswordRequirements.js"},"b6dc-205":{"renderedLength":0,"id":"src/components/atoms/password-requirements/index.js"},"b6dc-206":{"renderedLength":211,"id":"src/components/atoms/placeholder/Placeholder.theme.js"},"b6dc-207":{"renderedLength":3450,"id":"src/components/atoms/placeholder/Placeholder.js"},"b6dc-208":{"renderedLength":0,"id":"src/components/atoms/placeholder/index.js"},"b6dc-209":{"renderedLength":123,"id":"src/components/atoms/processing-fee/ProcessingFee.theme.js"},"b6dc-210":{"renderedLength":1155,"id":"src/components/atoms/processing-fee/ProcessingFee.js"},"b6dc-211":{"renderedLength":0,"id":"src/components/atoms/processing-fee/index.js"},"b6dc-212":{"renderedLength":178,"id":"src/components/atoms/radio-button/RadioButton.theme.js"},"b6dc-213":{"renderedLength":2728,"id":"src/components/atoms/radio-button/RadioButton.js"},"b6dc-214":{"renderedLength":0,"id":"src/components/atoms/radio-button/index.js"},"b6dc-215":{"renderedLength":185,"id":"src/components/atoms/solid-divider/SolidDivider.theme.js"},"b6dc-216":{"renderedLength":460,"id":"src/components/atoms/solid-divider/SolidDivider.js"},"b6dc-217":{"renderedLength":0,"id":"src/components/atoms/solid-divider/index.js"},"b6dc-218":{"renderedLength":163297,"id":"src/components/atoms/state-province-dropdown/options.js"},"b6dc-219":{"renderedLength":709,"id":"src/components/atoms/state-province-dropdown/StateProvinceDropdown.js"},"b6dc-220":{"renderedLength":0,"id":"src/components/atoms/state-province-dropdown/index.js"},"b6dc-221":{"renderedLength":652,"id":"src/components/atoms/toggle-switch/ToggleSwitch.theme.js"},"b6dc-222":{"renderedLength":6260,"id":"src/components/atoms/toggle-switch/ToggleSwitch.js"},"b6dc-223":{"renderedLength":0,"id":"src/components/atoms/toggle-switch/index.js"},"b6dc-224":{"renderedLength":0,"id":"src/components/atoms/index.js"},"b6dc-225":{"renderedLength":44923,"id":"node_modules/redux-freeform/dist/redux-freeform.esm.js"},"b6dc-226":{"renderedLength":1163,"id":"src/util/formats.js"},"b6dc-227":{"renderedLength":3175,"id":"src/components/molecules/address-form/AddressForm.js"},"b6dc-228":{"renderedLength":856,"id":"src/components/molecules/address-form/AddressForm.state.js"},"b6dc-229":{"renderedLength":132,"id":"src/components/molecules/address-form/index.js"},"b6dc-230":{"renderedLength":3198,"id":"src/components/molecules/change-password-form/ChangePasswordForm.js"},"b6dc-231":{"renderedLength":541,"id":"src/components/molecules/change-password-form/ChangePasswordForm.state.js"},"b6dc-232":{"renderedLength":157,"id":"src/components/molecules/change-password-form/index.js"},"b6dc-233":{"renderedLength":323,"id":"src/components/molecules/collapsible-section/CollapsibleSection.theme.js"},"b6dc-234":{"renderedLength":3059,"id":"src/components/molecules/collapsible-section/CollapsibleSection.js"},"b6dc-235":{"renderedLength":0,"id":"src/components/molecules/collapsible-section/index.js"},"b6dc-236":{"renderedLength":1486,"id":"src/components/molecules/edit-name-form/EditNameForm.js"},"b6dc-237":{"renderedLength":346,"id":"src/components/molecules/edit-name-form/EditNameForm.state.js"},"b6dc-238":{"renderedLength":139,"id":"src/components/molecules/edit-name-form/index.js"},"b6dc-239":{"renderedLength":1141,"id":"src/components/molecules/editable-list/EditableList.styled.js"},"b6dc-240":{"renderedLength":3927,"id":"src/components/molecules/editable-list/EditableList.js"},"b6dc-241":{"renderedLength":0,"id":"src/components/molecules/editable-list/index.js"},"b6dc-242":{"renderedLength":4356,"id":"src/components/molecules/editable-table/EditableTable.styled.js"},"b6dc-243":{"renderedLength":729,"id":"src/components/molecules/editable-table/EditableTable.js"},"b6dc-244":{"renderedLength":1548,"id":"src/components/molecules/editable-table/TableListItem.js"},"b6dc-245":{"renderedLength":0,"id":"src/components/molecules/editable-table/index.js"},"b6dc-246":{"renderedLength":2039,"id":"src/components/molecules/email-form/EmailForm.js"},"b6dc-247":{"renderedLength":388,"id":"src/components/molecules/email-form/EmailForm.state.js"},"b6dc-248":{"renderedLength":130,"id":"src/components/molecules/email-form/index.js"},"b6dc-249":{"renderedLength":1062,"id":"src/components/molecules/forgot-password-form/ForgotPasswordForm.js"},"b6dc-250":{"renderedLength":313,"id":"src/components/molecules/forgot-password-form/ForgotPasswordForm.state.js"},"b6dc-251":{"renderedLength":157,"id":"src/components/molecules/forgot-password-form/index.js"},"b6dc-252":{"renderedLength":1565,"id":"src/components/molecules/highlight-tab-row/HighlightTabRow.js"},"b6dc-253":{"renderedLength":154,"id":"src/components/molecules/highlight-tab-row/HighlightTabRow.theme.js"},"b6dc-254":{"renderedLength":102,"id":"src/components/molecules/highlight-tab-row/index.js"},"b6dc-255":{"renderedLength":1612,"id":"src/components/molecules/login-form/LoginForm.js"},"b6dc-256":{"renderedLength":361,"id":"src/components/molecules/login-form/LoginForm.state.js"},"b6dc-257":{"renderedLength":130,"id":"src/components/molecules/login-form/index.js"},"b6dc-258":{"renderedLength":5922,"id":"node_modules/tabbable/index.js"},"b6dc-259":{"renderedLength":386,"id":"node_modules/xtend/immutable.js"},"b6dc-260":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/tabbable/index.js?commonjs-proxy"},"b6dc-261":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/xtend/immutable.js?commonjs-proxy"},"b6dc-262":{"renderedLength":7733,"id":"node_modules/focus-trap/index.js"},"b6dc-263":{"renderedLength":0,"id":"\u0000react-dom?commonjs-external"},"b6dc-264":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/focus-trap/index.js?commonjs-proxy"},"b6dc-265":{"renderedLength":4911,"id":"node_modules/focus-trap-react/dist/focus-trap-react.js"},"b6dc-266":{"renderedLength":4972,"id":"node_modules/react-displace/dist/displace.js"},"b6dc-267":{"renderedLength":1648,"id":"node_modules/no-scroll/index.js"},"b6dc-268":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/focus-trap-react/dist/focus-trap-react.js?commonjs-proxy"},"b6dc-269":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/react-displace/dist/displace.js?commonjs-proxy"},"b6dc-270":{"renderedLength":0,"id":"\u0000/Users/bgimbel/Citybase/cb-components/node_modules/no-scroll/index.js?commonjs-proxy"},"b6dc-271":{"renderedLength":10251,"id":"node_modules/react-aria-modal/dist/react-aria-modal.js"},"b6dc-272":{"renderedLength":4494,"id":"src/components/molecules/modal/Modal.js"},"b6dc-273":{"renderedLength":0,"id":"src/components/molecules/modal/index.js"},"b6dc-274":{"renderedLength":1282,"id":"src/components/molecules/module/Module.js"},"b6dc-275":{"renderedLength":1112,"id":"src/components/molecules/module/Module.theme.js"},"b6dc-276":{"renderedLength":95,"id":"src/components/molecules/module/index.js"},"b6dc-277":{"renderedLength":99,"id":"src/components/molecules/nav-menu/NavMenu.theme.js"},"b6dc-278":{"renderedLength":1633,"id":"src/components/molecules/nav-menu/NavMenuDesktop.js"},"b6dc-279":{"renderedLength":1474,"id":"src/components/molecules/nav-menu/NavMenuMobile.js"},"b6dc-280":{"renderedLength":0,"id":"src/components/molecules/nav-menu/index.js"},"b6dc-281":{"renderedLength":7823,"id":"src/components/molecules/obligation/icons/AccountBillIcon.js"},"b6dc-282":{"renderedLength":6674,"id":"src/components/molecules/obligation/icons/AccountGenericIcon.js"},"b6dc-283":{"renderedLength":4857,"id":"src/components/molecules/obligation/icons/AccountConstructionIcon.js"},"b6dc-284":{"renderedLength":5098,"id":"src/components/molecules/obligation/icons/AccountDentalIcon.js"},"b6dc-285":{"renderedLength":4616,"id":"src/components/molecules/obligation/icons/AccountElectricIcon.js"},"b6dc-286":{"renderedLength":6060,"id":"src/components/molecules/obligation/icons/AccountGarbageIcon.js"},"b6dc-287":{"renderedLength":4604,"id":"src/components/molecules/obligation/icons/AccountGasIcon.js"},"b6dc-288":{"renderedLength":5317,"id":"src/components/molecules/obligation/icons/AccountMedicalIcon.js"},"b6dc-289":{"renderedLength":4706,"id":"src/components/molecules/obligation/icons/AccountWaterIcon.js"},"b6dc-290":{"renderedLength":8436,"id":"src/components/molecules/obligation/icons/PropertyApartmentIcon.js"},"b6dc-291":{"renderedLength":3650,"id":"src/components/molecules/obligation/icons/PropertyBusinessIcon.js"},"b6dc-292":{"renderedLength":6671,"id":"src/components/molecules/obligation/icons/PropertyCarIcon.js"},"b6dc-293":{"renderedLength":5989,"id":"src/components/molecules/obligation/icons/PropertyCommercialVehicleIcon.js"},"b6dc-294":{"renderedLength":6379,"id":"src/components/molecules/obligation/icons/PropertyGarageIcon.js"},"b6dc-295":{"renderedLength":5117,"id":"src/components/molecules/obligation/icons/PropertyLandIcon.js"},"b6dc-296":{"renderedLength":7906,"id":"src/components/molecules/obligation/icons/PropertyMotorcycleIcon.js"},"b6dc-297":{"renderedLength":4631,"id":"src/components/molecules/obligation/icons/PropertyStorefrontIcon.js"},"b6dc-298":{"renderedLength":5559,"id":"src/components/molecules/obligation/icons/PropertyPersonalIcon.js"},"b6dc-299":{"renderedLength":2377,"id":"src/components/molecules/obligation/icons/index.js"},"b6dc-300":{"renderedLength":945,"id":"src/components/molecules/obligation/modules/IconModule.js"},"b6dc-301":{"renderedLength":606,"id":"src/components/molecules/obligation/modules/TitleModule.js"},"b6dc-302":{"renderedLength":818,"id":"src/components/molecules/obligation/modules/AmountModule.js"},"b6dc-303":{"renderedLength":2238,"id":"src/components/molecules/obligation/modules/PaymentDetailsActions.js"},"b6dc-304":{"renderedLength":0,"id":"src/components/molecules/obligation/modules/index.js"},"b6dc-305":{"renderedLength":1747,"id":"src/components/molecules/obligation/Obligation.js"},"b6dc-306":{"renderedLength":0,"id":"src/components/molecules/obligation/index.js"},"b6dc-307":{"renderedLength":2265,"id":"src/components/molecules/partial-amount-form/PartialAmountForm.js"},"b6dc-308":{"renderedLength":1336,"id":"src/components/molecules/partial-amount-form/PartialAmountForm.state.js"},"b6dc-309":{"renderedLength":0,"id":"src/components/molecules/partial-amount-form/index.js"},"b6dc-310":{"renderedLength":2174,"id":"src/components/molecules/payment-button-bar/PaymentButtonBar.js"},"b6dc-311":{"renderedLength":0,"id":"src/components/molecules/payment-button-bar/index.js"},"b6dc-312":{"renderedLength":445,"id":"src/components/molecules/payment-details/PaymentDetails.theme.js"},"b6dc-313":{"renderedLength":5357,"id":"src/components/molecules/payment-details/PaymentDetails.js"},"b6dc-314":{"renderedLength":0,"id":"src/components/molecules/payment-details/index.js"},"b6dc-315":{"renderedLength":566,"id":"src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.theme.js"},"b6dc-316":{"renderedLength":2234,"id":"src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.js"},"b6dc-317":{"renderedLength":0,"id":"src/components/molecules/account-and-routing-modal/index.js"},"b6dc-318":{"renderedLength":6957,"id":"src/components/molecules/payment-form-ach/PaymentFormACH.js"},"b6dc-319":{"renderedLength":902,"id":"src/components/molecules/payment-form-ach/PaymentFormACH.state.js"},"b6dc-320":{"renderedLength":145,"id":"src/components/molecules/payment-form-ach/index.js"},"b6dc-321":{"renderedLength":4671,"id":"src/components/molecules/payment-form-card/PaymentFormCard.js"},"b6dc-322":{"renderedLength":842,"id":"src/components/molecules/payment-form-card/PaymentFormCard.state.js"},"b6dc-323":{"renderedLength":148,"id":"src/components/molecules/payment-form-card/index.js"},"b6dc-324":{"renderedLength":1397,"id":"src/components/molecules/phone-form/PhoneForm.js"},"b6dc-325":{"renderedLength":366,"id":"src/components/molecules/phone-form/PhoneForm.state.js"},"b6dc-326":{"renderedLength":130,"id":"src/components/molecules/phone-form/index.js"},"b6dc-327":{"renderedLength":452,"id":"src/components/molecules/radio-section/RadioSection.theme.js"},"b6dc-328":{"renderedLength":6685,"id":"src/components/molecules/radio-section/RadioSection.js"},"b6dc-329":{"renderedLength":0,"id":"src/components/molecules/radio-section/index.js"},"b6dc-330":{"renderedLength":3905,"id":"src/components/molecules/registration-form/RegistrationForm.js"},"b6dc-331":{"renderedLength":638,"id":"src/components/molecules/registration-form/RegistrationForm.state.js"},"b6dc-332":{"renderedLength":151,"id":"src/components/molecules/registration-form/index.js"},"b6dc-333":{"renderedLength":1752,"id":"src/components/molecules/reset-confirmation-form/ResetConfirmationForm.js"},"b6dc-334":{"renderedLength":0,"id":"src/components/molecules/reset-confirmation-form/index.js"},"b6dc-335":{"renderedLength":2455,"id":"src/components/molecules/reset-password-form/ResetPasswordForm.js"},"b6dc-336":{"renderedLength":477,"id":"src/components/molecules/reset-password-form/ResetPasswordForm.state.js"},"b6dc-337":{"renderedLength":154,"id":"src/components/molecules/reset-password-form/index.js"},"b6dc-338":{"renderedLength":1699,"id":"src/components/molecules/reset-password-success/ResetPasswordSuccess.js"},"b6dc-339":{"renderedLength":0,"id":"src/components/molecules/reset-password-success/index.js"},"b6dc-340":{"renderedLength":242,"id":"src/components/molecules/tab-sidebar/TabSidebar.theme.js"},"b6dc-341":{"renderedLength":2298,"id":"src/components/molecules/tab-sidebar/TabSidebar.js"},"b6dc-342":{"renderedLength":0,"id":"src/components/molecules/tab-sidebar/index.js"},"b6dc-343":{"renderedLength":765,"id":"src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.theme.js"},"b6dc-344":{"renderedLength":1984,"id":"src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.js"},"b6dc-345":{"renderedLength":0,"id":"src/components/molecules/terms-and-conditions-modal/index.js"},"b6dc-346":{"renderedLength":2438,"id":"src/components/molecules/terms-and-conditions/TermsAndConditions.js"},"b6dc-347":{"renderedLength":0,"id":"src/components/molecules/terms-and-conditions/index.js"},"b6dc-348":{"renderedLength":1427,"id":"src/components/molecules/workflow-tile/WorkflowTile.js"},"b6dc-349":{"renderedLength":0,"id":"src/components/molecules/workflow-tile/index.js"},"b6dc-350":{"renderedLength":0,"id":"src/components/molecules/index.js"},"b6dc-351":{"renderedLength":92,"id":"src/components/templates/templates.theme.js"},"b6dc-352":{"renderedLength":1994,"id":"src/components/templates/center-single/CenterSingle.js"},"b6dc-353":{"renderedLength":0,"id":"src/components/templates/center-single/index.js"},"b6dc-354":{"renderedLength":1863,"id":"src/components/templates/center-stack/CenterStack.js"},"b6dc-355":{"renderedLength":0,"id":"src/components/templates/center-stack/index.js"},"b6dc-356":{"renderedLength":1542,"id":"src/components/templates/default-page-template/DefaultPageTemplate.js"},"b6dc-357":{"renderedLength":0,"id":"src/components/templates/default-page-template/index.js"},"b6dc-358":{"renderedLength":2831,"id":"src/components/templates/sidebar-single-content/SidebarSingleContent.js"},"b6dc-359":{"renderedLength":0,"id":"src/components/templates/sidebar-single-content/index.js"},"b6dc-360":{"renderedLength":3325,"id":"src/components/templates/sidebar-stack-content/SidebarStackContent.js"},"b6dc-361":{"renderedLength":0,"id":"src/components/templates/sidebar-stack-content/index.js"},"b6dc-362":{"renderedLength":0,"id":"src/components/templates/index.js"},"b6dc-363":{"renderedLength":0,"id":"src/components/index.js"},"b6dc-364":{"renderedLength":0,"id":"src/constants/index.js"},"b6dc-365":{"renderedLength":0,"id":"src/util/index.js"},"b6dc-366":{"renderedLength":0,"isEntry":true,"id":"src/index.js"},"b6dc-367":{"renderedLength":0,"isExternal":true,"id":"react"},"b6dc-368":{"renderedLength":0,"isExternal":true,"id":"styled-components"},"b6dc-369":{"renderedLength":0,"isExternal":true,"id":"ramda"},"b6dc-370":{"renderedLength":0,"isExternal":true,"id":"react-router-dom"},"b6dc-371":{"renderedLength":0,"isExternal":true,"id":"styled-theming"},"b6dc-372":{"renderedLength":0,"isExternal":true,"id":"react-dom"}},"links":[{"source":"b6dc-366","target":"b6dc-363"},{"source":"b6dc-366","target":"b6dc-364"},{"source":"b6dc-366","target":"b6dc-365"},{"source":"b6dc-363","target":"b6dc-224"},{"source":"b6dc-363","target":"b6dc-350"},{"source":"b6dc-363","target":"b6dc-362"},{"source":"b6dc-363","target":"b6dc-154"},{"source":"b6dc-364","target":"b6dc-0"},{"source":"b6dc-364","target":"b6dc-58"},{"source":"b6dc-365","target":"b6dc-226"},{"source":"b6dc-365","target":"b6dc-22"},{"source":"b6dc-224","target":"b6dc-64"},{"source":"b6dc-224","target":"b6dc-71"},{"source":"b6dc-224","target":"b6dc-80"},{"source":"b6dc-224","target":"b6dc-91"},{"source":"b6dc-224","target":"b6dc-94"},{"source":"b6dc-224","target":"b6dc-97"},{"source":"b6dc-224","target":"b6dc-104"},{"source":"b6dc-224","target":"b6dc-138"},{"source":"b6dc-224","target":"b6dc-141"},{"source":"b6dc-224","target":"b6dc-147"},{"source":"b6dc-224","target":"b6dc-132"},{"source":"b6dc-224","target":"b6dc-156"},{"source":"b6dc-224","target":"b6dc-135"},{"source":"b6dc-224","target":"b6dc-159"},{"source":"b6dc-224","target":"b6dc-163"},{"source":"b6dc-224","target":"b6dc-165"},{"source":"b6dc-224","target":"b6dc-68"},{"source":"b6dc-224","target":"b6dc-185"},{"source":"b6dc-224","target":"b6dc-187"},{"source":"b6dc-224","target":"b6dc-190"},{"source":"b6dc-224","target":"b6dc-55"},{"source":"b6dc-224","target":"b6dc-193"},{"source":"b6dc-224","target":"b6dc-198"},{"source":"b6dc-224","target":"b6dc-78"},{"source":"b6dc-224","target":"b6dc-200"},{"source":"b6dc-224","target":"b6dc-202"},{"source":"b6dc-224","target":"b6dc-145"},{"source":"b6dc-224","target":"b6dc-205"},{"source":"b6dc-224","target":"b6dc-208"},{"source":"b6dc-224","target":"b6dc-211"},{"source":"b6dc-224","target":"b6dc-214"},{"source":"b6dc-224","target":"b6dc-217"},{"source":"b6dc-224","target":"b6dc-196"},{"source":"b6dc-224","target":"b6dc-220"},{"source":"b6dc-224","target":"b6dc-61"},{"source":"b6dc-224","target":"b6dc-223"},{"source":"b6dc-350","target":"b6dc-229"},{"source":"b6dc-350","target":"b6dc-232"},{"source":"b6dc-350","target":"b6dc-235"},{"source":"b6dc-350","target":"b6dc-238"},{"source":"b6dc-350","target":"b6dc-241"},{"source":"b6dc-350","target":"b6dc-245"},{"source":"b6dc-350","target":"b6dc-248"},{"source":"b6dc-350","target":"b6dc-251"},{"source":"b6dc-350","target":"b6dc-254"},{"source":"b6dc-350","target":"b6dc-257"},{"source":"b6dc-350","target":"b6dc-273"},{"source":"b6dc-350","target":"b6dc-276"},{"source":"b6dc-350","target":"b6dc-280"},{"source":"b6dc-350","target":"b6dc-306"},{"source":"b6dc-350","target":"b6dc-309"},{"source":"b6dc-350","target":"b6dc-311"},{"source":"b6dc-350","target":"b6dc-314"},{"source":"b6dc-350","target":"b6dc-320"},{"source":"b6dc-350","target":"b6dc-323"},{"source":"b6dc-350","target":"b6dc-326"},{"source":"b6dc-350","target":"b6dc-329"},{"source":"b6dc-350","target":"b6dc-332"},{"source":"b6dc-350","target":"b6dc-334"},{"source":"b6dc-350","target":"b6dc-337"},{"source":"b6dc-350","target":"b6dc-339"},{"source":"b6dc-350","target":"b6dc-342"},{"source":"b6dc-350","target":"b6dc-347"},{"source":"b6dc-350","target":"b6dc-345"},{"source":"b6dc-350","target":"b6dc-349"},{"source":"b6dc-362","target":"b6dc-353"},{"source":"b6dc-362","target":"b6dc-355"},{"source":"b6dc-362","target":"b6dc-357"},{"source":"b6dc-362","target":"b6dc-359"},{"source":"b6dc-362","target":"b6dc-361"},{"source":"b6dc-154","target":"b6dc-18"},{"source":"b6dc-154","target":"b6dc-367"},{"source":"b6dc-154","target":"b6dc-368"},{"source":"b6dc-226","target":"b6dc-149"},{"source":"b6dc-22","target":"b6dc-21"},{"source":"b6dc-64","target":"b6dc-63"},{"source":"b6dc-71","target":"b6dc-70"},{"source":"b6dc-80","target":"b6dc-79"},{"source":"b6dc-91","target":"b6dc-90"},{"source":"b6dc-94","target":"b6dc-93"},{"source":"b6dc-97","target":"b6dc-96"},{"source":"b6dc-104","target":"b6dc-103"},{"source":"b6dc-138","target":"b6dc-137"},{"source":"b6dc-141","target":"b6dc-140"},{"source":"b6dc-147","target":"b6dc-146"},{"source":"b6dc-132","target":"b6dc-131"},{"source":"b6dc-156","target":"b6dc-151"},{"source":"b6dc-156","target":"b6dc-152"},{"source":"b6dc-156","target":"b6dc-153"},{"source":"b6dc-156","target":"b6dc-155"},{"source":"b6dc-135","target":"b6dc-134"},{"source":"b6dc-159","target":"b6dc-158"},{"source":"b6dc-163","target":"b6dc-162"},{"source":"b6dc-165","target":"b6dc-164"},{"source":"b6dc-68","target":"b6dc-67"},{"source":"b6dc-185","target":"b6dc-167"},{"source":"b6dc-185","target":"b6dc-168"},{"source":"b6dc-185","target":"b6dc-169"},{"source":"b6dc-185","target":"b6dc-170"},{"source":"b6dc-185","target":"b6dc-171"},{"source":"b6dc-185","target":"b6dc-172"},{"source":"b6dc-185","target":"b6dc-173"},{"source":"b6dc-185","target":"b6dc-174"},{"source":"b6dc-185","target":"b6dc-175"},{"source":"b6dc-185","target":"b6dc-176"},{"source":"b6dc-185","target":"b6dc-177"},{"source":"b6dc-185","target":"b6dc-178"},{"source":"b6dc-185","target":"b6dc-179"},{"source":"b6dc-185","target":"b6dc-180"},{"source":"b6dc-185","target":"b6dc-181"},{"source":"b6dc-185","target":"b6dc-182"},{"source":"b6dc-185","target":"b6dc-183"},{"source":"b6dc-185","target":"b6dc-160"},{"source":"b6dc-185","target":"b6dc-184"},{"source":"b6dc-187","target":"b6dc-186"},{"source":"b6dc-190","target":"b6dc-189"},{"source":"b6dc-55","target":"b6dc-23"},{"source":"b6dc-55","target":"b6dc-25"},{"source":"b6dc-55","target":"b6dc-27"},{"source":"b6dc-55","target":"b6dc-29"},{"source":"b6dc-55","target":"b6dc-31"},{"source":"b6dc-55","target":"b6dc-33"},{"source":"b6dc-55","target":"b6dc-35"},{"source":"b6dc-55","target":"b6dc-37"},{"source":"b6dc-55","target":"b6dc-39"},{"source":"b6dc-55","target":"b6dc-41"},{"source":"b6dc-55","target":"b6dc-52"},{"source":"b6dc-55","target":"b6dc-54"},{"source":"b6dc-193","target":"b6dc-192"},{"source":"b6dc-198","target":"b6dc-197"},{"source":"b6dc-78","target":"b6dc-75"},{"source":"b6dc-78","target":"b6dc-77"},{"source":"b6dc-200","target":"b6dc-199"},{"source":"b6dc-202","target":"b6dc-201"},{"source":"b6dc-145","target":"b6dc-144"},{"source":"b6dc-205","target":"b6dc-204"},{"source":"b6dc-208","target":"b6dc-207"},{"source":"b6dc-211","target":"b6dc-210"},{"source":"b6dc-214","target":"b6dc-213"},{"source":"b6dc-217","target":"b6dc-216"},{"source":"b6dc-196","target":"b6dc-195"},{"source":"b6dc-220","target":"b6dc-219"},{"source":"b6dc-61","target":"b6dc-60"},{"source":"b6dc-223","target":"b6dc-222"},{"source":"b6dc-229","target":"b6dc-227"},{"source":"b6dc-229","target":"b6dc-228"},{"source":"b6dc-232","target":"b6dc-230"},{"source":"b6dc-232","target":"b6dc-231"},{"source":"b6dc-235","target":"b6dc-234"},{"source":"b6dc-238","target":"b6dc-236"},{"source":"b6dc-238","target":"b6dc-237"},{"source":"b6dc-241","target":"b6dc-240"},{"source":"b6dc-245","target":"b6dc-243"},{"source":"b6dc-245","target":"b6dc-244"},{"source":"b6dc-248","target":"b6dc-246"},{"source":"b6dc-248","target":"b6dc-247"},{"source":"b6dc-251","target":"b6dc-249"},{"source":"b6dc-251","target":"b6dc-250"},{"source":"b6dc-254","target":"b6dc-367"},{"source":"b6dc-254","target":"b6dc-252"},{"source":"b6dc-254","target":"b6dc-57"},{"source":"b6dc-254","target":"b6dc-253"},{"source":"b6dc-257","target":"b6dc-255"},{"source":"b6dc-257","target":"b6dc-256"},{"source":"b6dc-273","target":"b6dc-272"},{"source":"b6dc-276","target":"b6dc-367"},{"source":"b6dc-276","target":"b6dc-274"},{"source":"b6dc-276","target":"b6dc-57"},{"source":"b6dc-276","target":"b6dc-275"},{"source":"b6dc-280","target":"b6dc-278"},{"source":"b6dc-280","target":"b6dc-279"},{"source":"b6dc-306","target":"b6dc-305"},{"source":"b6dc-309","target":"b6dc-307"},{"source":"b6dc-309","target":"b6dc-308"},{"source":"b6dc-311","target":"b6dc-310"},{"source":"b6dc-314","target":"b6dc-313"},{"source":"b6dc-320","target":"b6dc-318"},{"source":"b6dc-320","target":"b6dc-319"},{"source":"b6dc-323","target":"b6dc-321"},{"source":"b6dc-323","target":"b6dc-322"},{"source":"b6dc-326","target":"b6dc-324"},{"source":"b6dc-326","target":"b6dc-325"},{"source":"b6dc-329","target":"b6dc-328"},{"source":"b6dc-332","target":"b6dc-330"},{"source":"b6dc-332","target":"b6dc-331"},{"source":"b6dc-334","target":"b6dc-333"},{"source":"b6dc-337","target":"b6dc-335"},{"source":"b6dc-337","target":"b6dc-336"},{"source":"b6dc-339","target":"b6dc-338"},{"source":"b6dc-342","target":"b6dc-341"},{"source":"b6dc-347","target":"b6dc-346"},{"source":"b6dc-345","target":"b6dc-344"},{"source":"b6dc-349","target":"b6dc-348"},{"source":"b6dc-353","target":"b6dc-352"},{"source":"b6dc-355","target":"b6dc-354"},{"source":"b6dc-357","target":"b6dc-356"},{"source":"b6dc-359","target":"b6dc-358"},{"source":"b6dc-361","target":"b6dc-360"},{"source":"b6dc-149","target":"b6dc-20"},{"source":"b6dc-149","target":"b6dc-367"},{"source":"b6dc-149","target":"b6dc-148"},{"source":"b6dc-21","target":"b6dc-20"},{"source":"b6dc-63","target":"b6dc-367"},{"source":"b6dc-63","target":"b6dc-17"},{"source":"b6dc-63","target":"b6dc-55"},{"source":"b6dc-63","target":"b6dc-61"},{"source":"b6dc-63","target":"b6dc-62"},{"source":"b6dc-63","target":"b6dc-57"},{"source":"b6dc-70","target":"b6dc-367"},{"source":"b6dc-70","target":"b6dc-68"},{"source":"b6dc-70","target":"b6dc-55"},{"source":"b6dc-70","target":"b6dc-69"},{"source":"b6dc-70","target":"b6dc-57"},{"source":"b6dc-70","target":"b6dc-58"},{"source":"b6dc-79","target":"b6dc-367"},{"source":"b6dc-79","target":"b6dc-368"},{"source":"b6dc-79","target":"b6dc-17"},{"source":"b6dc-79","target":"b6dc-57"},{"source":"b6dc-79","target":"b6dc-72"},{"source":"b6dc-79","target":"b6dc-78"},{"source":"b6dc-79","target":"b6dc-27"},{"source":"b6dc-79","target":"b6dc-23"},{"source":"b6dc-90","target":"b6dc-18"},{"source":"b6dc-90","target":"b6dc-367"},{"source":"b6dc-90","target":"b6dc-368"},{"source":"b6dc-90","target":"b6dc-86"},{"source":"b6dc-90","target":"b6dc-46"},{"source":"b6dc-90","target":"b6dc-61"},{"source":"b6dc-90","target":"b6dc-55"},{"source":"b6dc-90","target":"b6dc-87"},{"source":"b6dc-90","target":"b6dc-89"},{"source":"b6dc-90","target":"b6dc-22"},{"source":"b6dc-90","target":"b6dc-57"},{"source":"b6dc-93","target":"b6dc-18"},{"source":"b6dc-93","target":"b6dc-367"},{"source":"b6dc-93","target":"b6dc-369"},{"source":"b6dc-93","target":"b6dc-92"},{"source":"b6dc-93","target":"b6dc-78"},{"source":"b6dc-93","target":"b6dc-22"},{"source":"b6dc-93","target":"b6dc-91"},{"source":"b6dc-96","target":"b6dc-18"},{"source":"b6dc-96","target":"b6dc-367"},{"source":"b6dc-96","target":"b6dc-368"},{"source":"b6dc-96","target":"b6dc-95"},{"source":"b6dc-96","target":"b6dc-22"},{"source":"b6dc-96","target":"b6dc-23"},{"source":"b6dc-96","target":"b6dc-61"},{"source":"b6dc-96","target":"b6dc-57"},{"source":"b6dc-103","target":"b6dc-18"},{"source":"b6dc-103","target":"b6dc-367"},{"source":"b6dc-103","target":"b6dc-368"},{"source":"b6dc-103","target":"b6dc-98"},{"source":"b6dc-103","target":"b6dc-57"},{"source":"b6dc-103","target":"b6dc-102"},{"source":"b6dc-103","target":"b6dc-61"},{"source":"b6dc-103","target":"b6dc-22"},{"source":"b6dc-103","target":"b6dc-55"},{"source":"b6dc-137","target":"b6dc-367"},{"source":"b6dc-137","target":"b6dc-135"},{"source":"b6dc-137","target":"b6dc-136"},{"source":"b6dc-140","target":"b6dc-367"},{"source":"b6dc-140","target":"b6dc-23"},{"source":"b6dc-140","target":"b6dc-139"},{"source":"b6dc-140","target":"b6dc-57"},{"source":"b6dc-140","target":"b6dc-0"},{"source":"b6dc-146","target":"b6dc-367"},{"source":"b6dc-146","target":"b6dc-33"},{"source":"b6dc-146","target":"b6dc-23"},{"source":"b6dc-146","target":"b6dc-61"},{"source":"b6dc-146","target":"b6dc-145"},{"source":"b6dc-146","target":"b6dc-27"},{"source":"b6dc-146","target":"b6dc-91"},{"source":"b6dc-146","target":"b6dc-94"},{"source":"b6dc-146","target":"b6dc-0"},{"source":"b6dc-131","target":"b6dc-18"},{"source":"b6dc-131","target":"b6dc-367"},{"source":"b6dc-131","target":"b6dc-128"},{"source":"b6dc-131","target":"b6dc-55"},{"source":"b6dc-131","target":"b6dc-61"},{"source":"b6dc-131","target":"b6dc-22"},{"source":"b6dc-131","target":"b6dc-129"},{"source":"b6dc-131","target":"b6dc-368"},{"source":"b6dc-131","target":"b6dc-0"},{"source":"b6dc-131","target":"b6dc-130"},{"source":"b6dc-131","target":"b6dc-57"},{"source":"b6dc-151","target":"b6dc-18"},{"source":"b6dc-151","target":"b6dc-367"},{"source":"b6dc-151","target":"b6dc-368"},{"source":"b6dc-151","target":"b6dc-149"},{"source":"b6dc-151","target":"b6dc-150"},{"source":"b6dc-151","target":"b6dc-57"},{"source":"b6dc-151","target":"b6dc-61"},{"source":"b6dc-151","target":"b6dc-55"},{"source":"b6dc-151","target":"b6dc-58"},{"source":"b6dc-151","target":"b6dc-0"},{"source":"b6dc-152","target":"b6dc-18"},{"source":"b6dc-152","target":"b6dc-367"},{"source":"b6dc-152","target":"b6dc-55"},{"source":"b6dc-153","target":"b6dc-18"},{"source":"b6dc-153","target":"b6dc-367"},{"source":"b6dc-153","target":"b6dc-55"},{"source":"b6dc-155","target":"b6dc-18"},{"source":"b6dc-155","target":"b6dc-367"},{"source":"b6dc-155","target":"b6dc-368"},{"source":"b6dc-155","target":"b6dc-150"},{"source":"b6dc-155","target":"b6dc-57"},{"source":"b6dc-155","target":"b6dc-55"},{"source":"b6dc-155","target":"b6dc-154"},{"source":"b6dc-134","target":"b6dc-18"},{"source":"b6dc-134","target":"b6dc-367"},{"source":"b6dc-134","target":"b6dc-132"},{"source":"b6dc-134","target":"b6dc-61"},{"source":"b6dc-134","target":"b6dc-0"},{"source":"b6dc-134","target":"b6dc-133"},{"source":"b6dc-158","target":"b6dc-367"},{"source":"b6dc-158","target":"b6dc-61"},{"source":"b6dc-158","target":"b6dc-23"},{"source":"b6dc-158","target":"b6dc-157"},{"source":"b6dc-158","target":"b6dc-57"},{"source":"b6dc-162","target":"b6dc-18"},{"source":"b6dc-162","target":"b6dc-367"},{"source":"b6dc-162","target":"b6dc-368"},{"source":"b6dc-162","target":"b6dc-160"},{"source":"b6dc-162","target":"b6dc-61"},{"source":"b6dc-162","target":"b6dc-55"},{"source":"b6dc-162","target":"b6dc-161"},{"source":"b6dc-162","target":"b6dc-57"},{"source":"b6dc-164","target":"b6dc-18"},{"source":"b6dc-164","target":"b6dc-367"},{"source":"b6dc-164","target":"b6dc-368"},{"source":"b6dc-67","target":"b6dc-18"},{"source":"b6dc-67","target":"b6dc-367"},{"source":"b6dc-67","target":"b6dc-58"},{"source":"b6dc-67","target":"b6dc-0"},{"source":"b6dc-67","target":"b6dc-65"},{"source":"b6dc-67","target":"b6dc-22"},{"source":"b6dc-67","target":"b6dc-66"},{"source":"b6dc-67","target":"b6dc-57"},{"source":"b6dc-167","target":"b6dc-367"},{"source":"b6dc-167","target":"b6dc-166"},{"source":"b6dc-167","target":"b6dc-57"},{"source":"b6dc-168","target":"b6dc-367"},{"source":"b6dc-168","target":"b6dc-166"},{"source":"b6dc-168","target":"b6dc-57"},{"source":"b6dc-169","target":"b6dc-367"},{"source":"b6dc-169","target":"b6dc-166"},{"source":"b6dc-169","target":"b6dc-57"},{"source":"b6dc-170","target":"b6dc-367"},{"source":"b6dc-170","target":"b6dc-166"},{"source":"b6dc-170","target":"b6dc-57"},{"source":"b6dc-171","target":"b6dc-367"},{"source":"b6dc-171","target":"b6dc-166"},{"source":"b6dc-171","target":"b6dc-57"},{"source":"b6dc-172","target":"b6dc-367"},{"source":"b6dc-172","target":"b6dc-166"},{"source":"b6dc-172","target":"b6dc-57"},{"source":"b6dc-173","target":"b6dc-367"},{"source":"b6dc-173","target":"b6dc-166"},{"source":"b6dc-173","target":"b6dc-57"},{"source":"b6dc-174","target":"b6dc-367"},{"source":"b6dc-174","target":"b6dc-166"},{"source":"b6dc-174","target":"b6dc-57"},{"source":"b6dc-175","target":"b6dc-367"},{"source":"b6dc-175","target":"b6dc-166"},{"source":"b6dc-175","target":"b6dc-57"},{"source":"b6dc-176","target":"b6dc-367"},{"source":"b6dc-176","target":"b6dc-166"},{"source":"b6dc-176","target":"b6dc-57"},{"source":"b6dc-177","target":"b6dc-367"},{"source":"b6dc-177","target":"b6dc-166"},{"source":"b6dc-177","target":"b6dc-57"},{"source":"b6dc-178","target":"b6dc-367"},{"source":"b6dc-178","target":"b6dc-166"},{"source":"b6dc-178","target":"b6dc-57"},{"source":"b6dc-179","target":"b6dc-367"},{"source":"b6dc-179","target":"b6dc-166"},{"source":"b6dc-179","target":"b6dc-57"},{"source":"b6dc-180","target":"b6dc-367"},{"source":"b6dc-181","target":"b6dc-367"},{"source":"b6dc-182","target":"b6dc-367"},{"source":"b6dc-182","target":"b6dc-0"},{"source":"b6dc-183","target":"b6dc-367"},{"source":"b6dc-160","target":"b6dc-367"},{"source":"b6dc-184","target":"b6dc-18"},{"source":"b6dc-184","target":"b6dc-367"},{"source":"b6dc-184","target":"b6dc-368"},{"source":"b6dc-184","target":"b6dc-0"},{"source":"b6dc-184","target":"b6dc-183"},{"source":"b6dc-184","target":"b6dc-55"},{"source":"b6dc-184","target":"b6dc-61"},{"source":"b6dc-186","target":"b6dc-367"},{"source":"b6dc-186","target":"b6dc-368"},{"source":"b6dc-186","target":"b6dc-94"},{"source":"b6dc-186","target":"b6dc-55"},{"source":"b6dc-186","target":"b6dc-68"},{"source":"b6dc-186","target":"b6dc-154"},{"source":"b6dc-189","target":"b6dc-367"},{"source":"b6dc-189","target":"b6dc-188"},{"source":"b6dc-189","target":"b6dc-57"},{"source":"b6dc-189","target":"b6dc-55"},{"source":"b6dc-189","target":"b6dc-68"},{"source":"b6dc-189","target":"b6dc-145"},{"source":"b6dc-23","target":"b6dc-18"},{"source":"b6dc-23","target":"b6dc-367"},{"source":"b6dc-23","target":"b6dc-19"},{"source":"b6dc-23","target":"b6dc-22"},{"source":"b6dc-25","target":"b6dc-18"},{"source":"b6dc-25","target":"b6dc-367"},{"source":"b6dc-25","target":"b6dc-24"},{"source":"b6dc-25","target":"b6dc-22"},{"source":"b6dc-27","target":"b6dc-18"},{"source":"b6dc-27","target":"b6dc-367"},{"source":"b6dc-27","target":"b6dc-26"},{"source":"b6dc-27","target":"b6dc-22"},{"source":"b6dc-29","target":"b6dc-18"},{"source":"b6dc-29","target":"b6dc-367"},{"source":"b6dc-29","target":"b6dc-28"},{"source":"b6dc-29","target":"b6dc-22"},{"source":"b6dc-31","target":"b6dc-18"},{"source":"b6dc-31","target":"b6dc-367"},{"source":"b6dc-31","target":"b6dc-30"},{"source":"b6dc-31","target":"b6dc-22"},{"source":"b6dc-33","target":"b6dc-18"},{"source":"b6dc-33","target":"b6dc-367"},{"source":"b6dc-33","target":"b6dc-32"},{"source":"b6dc-33","target":"b6dc-22"},{"source":"b6dc-35","target":"b6dc-18"},{"source":"b6dc-35","target":"b6dc-367"},{"source":"b6dc-35","target":"b6dc-22"},{"source":"b6dc-35","target":"b6dc-34"},{"source":"b6dc-37","target":"b6dc-18"},{"source":"b6dc-37","target":"b6dc-367"},{"source":"b6dc-37","target":"b6dc-22"},{"source":"b6dc-37","target":"b6dc-36"},{"source":"b6dc-39","target":"b6dc-18"},{"source":"b6dc-39","target":"b6dc-367"},{"source":"b6dc-39","target":"b6dc-22"},{"source":"b6dc-39","target":"b6dc-38"},{"source":"b6dc-41","target":"b6dc-18"},{"source":"b6dc-41","target":"b6dc-367"},{"source":"b6dc-41","target":"b6dc-40"},{"source":"b6dc-41","target":"b6dc-22"},{"source":"b6dc-52","target":"b6dc-18"},{"source":"b6dc-52","target":"b6dc-367"},{"source":"b6dc-52","target":"b6dc-51"},{"source":"b6dc-52","target":"b6dc-22"},{"source":"b6dc-54","target":"b6dc-18"},{"source":"b6dc-54","target":"b6dc-367"},{"source":"b6dc-54","target":"b6dc-22"},{"source":"b6dc-54","target":"b6dc-53"},{"source":"b6dc-192","target":"b6dc-367"},{"source":"b6dc-192","target":"b6dc-55"},{"source":"b6dc-192","target":"b6dc-145"},{"source":"b6dc-192","target":"b6dc-57"},{"source":"b6dc-192","target":"b6dc-191"},{"source":"b6dc-197","target":"b6dc-367"},{"source":"b6dc-197","target":"b6dc-196"},{"source":"b6dc-197","target":"b6dc-55"},{"source":"b6dc-75","target":"b6dc-367"},{"source":"b6dc-75","target":"b6dc-368"},{"source":"b6dc-75","target":"b6dc-73"},{"source":"b6dc-75","target":"b6dc-57"},{"source":"b6dc-75","target":"b6dc-74"},{"source":"b6dc-75","target":"b6dc-58"},{"source":"b6dc-75","target":"b6dc-0"},{"source":"b6dc-75","target":"b6dc-22"},{"source":"b6dc-77","target":"b6dc-367"},{"source":"b6dc-77","target":"b6dc-368"},{"source":"b6dc-77","target":"b6dc-73"},{"source":"b6dc-77","target":"b6dc-57"},{"source":"b6dc-77","target":"b6dc-76"},{"source":"b6dc-77","target":"b6dc-22"},{"source":"b6dc-199","target":"b6dc-18"},{"source":"b6dc-199","target":"b6dc-367"},{"source":"b6dc-199","target":"b6dc-55"},{"source":"b6dc-201","target":"b6dc-18"},{"source":"b6dc-201","target":"b6dc-367"},{"source":"b6dc-201","target":"b6dc-55"},{"source":"b6dc-144","target":"b6dc-18"},{"source":"b6dc-144","target":"b6dc-367"},{"source":"b6dc-144","target":"b6dc-142"},{"source":"b6dc-144","target":"b6dc-57"},{"source":"b6dc-144","target":"b6dc-58"},{"source":"b6dc-144","target":"b6dc-0"},{"source":"b6dc-144","target":"b6dc-143"},{"source":"b6dc-144","target":"b6dc-22"},{"source":"b6dc-204","target":"b6dc-18"},{"source":"b6dc-204","target":"b6dc-367"},{"source":"b6dc-204","target":"b6dc-17"},{"source":"b6dc-204","target":"b6dc-145"},{"source":"b6dc-204","target":"b6dc-55"},{"source":"b6dc-204","target":"b6dc-203"},{"source":"b6dc-204","target":"b6dc-0"},{"source":"b6dc-207","target":"b6dc-367"},{"source":"b6dc-207","target":"b6dc-368"},{"source":"b6dc-207","target":"b6dc-370"},{"source":"b6dc-207","target":"b6dc-61"},{"source":"b6dc-207","target":"b6dc-55"},{"source":"b6dc-207","target":"b6dc-206"},{"source":"b6dc-207","target":"b6dc-57"},{"source":"b6dc-207","target":"b6dc-17"},{"source":"b6dc-207","target":"b6dc-0"},{"source":"b6dc-207","target":"b6dc-185"},{"source":"b6dc-207","target":"b6dc-58"},{"source":"b6dc-207","target":"b6dc-154"},{"source":"b6dc-210","target":"b6dc-367"},{"source":"b6dc-210","target":"b6dc-369"},{"source":"b6dc-210","target":"b6dc-209"},{"source":"b6dc-210","target":"b6dc-57"},{"source":"b6dc-210","target":"b6dc-23"},{"source":"b6dc-210","target":"b6dc-64"},{"source":"b6dc-210","target":"b6dc-22"},{"source":"b6dc-213","target":"b6dc-18"},{"source":"b6dc-213","target":"b6dc-367"},{"source":"b6dc-213","target":"b6dc-57"},{"source":"b6dc-213","target":"b6dc-212"},{"source":"b6dc-213","target":"b6dc-55"},{"source":"b6dc-213","target":"b6dc-368"},{"source":"b6dc-216","target":"b6dc-367"},{"source":"b6dc-216","target":"b6dc-215"},{"source":"b6dc-216","target":"b6dc-57"},{"source":"b6dc-216","target":"b6dc-55"},{"source":"b6dc-195","target":"b6dc-18"},{"source":"b6dc-195","target":"b6dc-367"},{"source":"b6dc-195","target":"b6dc-368"},{"source":"b6dc-195","target":"b6dc-194"},{"source":"b6dc-195","target":"b6dc-57"},{"source":"b6dc-219","target":"b6dc-18"},{"source":"b6dc-219","target":"b6dc-367"},{"source":"b6dc-219","target":"b6dc-135"},{"source":"b6dc-219","target":"b6dc-218"},{"source":"b6dc-60","target":"b6dc-18"},{"source":"b6dc-60","target":"b6dc-367"},{"source":"b6dc-60","target":"b6dc-56"},{"source":"b6dc-60","target":"b6dc-57"},{"source":"b6dc-60","target":"b6dc-58"},{"source":"b6dc-60","target":"b6dc-0"},{"source":"b6dc-60","target":"b6dc-59"},{"source":"b6dc-60","target":"b6dc-22"},{"source":"b6dc-222","target":"b6dc-18"},{"source":"b6dc-222","target":"b6dc-367"},{"source":"b6dc-222","target":"b6dc-368"},{"source":"b6dc-222","target":"b6dc-86"},{"source":"b6dc-222","target":"b6dc-221"},{"source":"b6dc-222","target":"b6dc-57"},{"source":"b6dc-222","target":"b6dc-68"},{"source":"b6dc-222","target":"b6dc-55"},{"source":"b6dc-222","target":"b6dc-58"},{"source":"b6dc-222","target":"b6dc-0"},{"source":"b6dc-227","target":"b6dc-18"},{"source":"b6dc-227","target":"b6dc-367"},{"source":"b6dc-227","target":"b6dc-225"},{"source":"b6dc-227","target":"b6dc-220"},{"source":"b6dc-227","target":"b6dc-226"},{"source":"b6dc-227","target":"b6dc-22"},{"source":"b6dc-227","target":"b6dc-156"},{"source":"b6dc-228","target":"b6dc-225"},{"source":"b6dc-230","target":"b6dc-18"},{"source":"b6dc-230","target":"b6dc-367"},{"source":"b6dc-230","target":"b6dc-225"},{"source":"b6dc-230","target":"b6dc-156"},{"source":"b6dc-230","target":"b6dc-55"},{"source":"b6dc-230","target":"b6dc-205"},{"source":"b6dc-230","target":"b6dc-22"},{"source":"b6dc-231","target":"b6dc-225"},{"source":"b6dc-234","target":"b6dc-367"},{"source":"b6dc-234","target":"b6dc-233"},{"source":"b6dc-234","target":"b6dc-50"},{"source":"b6dc-234","target":"b6dc-57"},{"source":"b6dc-234","target":"b6dc-68"},{"source":"b6dc-234","target":"b6dc-58"},{"source":"b6dc-234","target":"b6dc-55"},{"source":"b6dc-234","target":"b6dc-17"},{"source":"b6dc-234","target":"b6dc-22"},{"source":"b6dc-236","target":"b6dc-18"},{"source":"b6dc-236","target":"b6dc-367"},{"source":"b6dc-236","target":"b6dc-225"},{"source":"b6dc-236","target":"b6dc-156"},{"source":"b6dc-236","target":"b6dc-22"},{"source":"b6dc-237","target":"b6dc-225"},{"source":"b6dc-240","target":"b6dc-18"},{"source":"b6dc-240","target":"b6dc-367"},{"source":"b6dc-240","target":"b6dc-239"},{"source":"b6dc-240","target":"b6dc-55"},{"source":"b6dc-240","target":"b6dc-208"},{"source":"b6dc-240","target":"b6dc-91"},{"source":"b6dc-240","target":"b6dc-61"},{"source":"b6dc-240","target":"b6dc-145"},{"source":"b6dc-240","target":"b6dc-0"},{"source":"b6dc-243","target":"b6dc-367"},{"source":"b6dc-243","target":"b6dc-242"},{"source":"b6dc-243","target":"b6dc-55"},{"source":"b6dc-243","target":"b6dc-145"},{"source":"b6dc-243","target":"b6dc-0"},{"source":"b6dc-243","target":"b6dc-58"},{"source":"b6dc-243","target":"b6dc-22"},{"source":"b6dc-244","target":"b6dc-367"},{"source":"b6dc-244","target":"b6dc-242"},{"source":"b6dc-244","target":"b6dc-55"},{"source":"b6dc-244","target":"b6dc-61"},{"source":"b6dc-244","target":"b6dc-0"},{"source":"b6dc-246","target":"b6dc-18"},{"source":"b6dc-246","target":"b6dc-367"},{"source":"b6dc-246","target":"b6dc-225"},{"source":"b6dc-246","target":"b6dc-156"},{"source":"b6dc-246","target":"b6dc-22"},{"source":"b6dc-247","target":"b6dc-225"},{"source":"b6dc-249","target":"b6dc-18"},{"source":"b6dc-249","target":"b6dc-367"},{"source":"b6dc-249","target":"b6dc-225"},{"source":"b6dc-249","target":"b6dc-156"},{"source":"b6dc-249","target":"b6dc-22"},{"source":"b6dc-250","target":"b6dc-225"},{"source":"b6dc-252","target":"b6dc-367"},{"source":"b6dc-252","target":"b6dc-369"},{"source":"b6dc-252","target":"b6dc-55"},{"source":"b6dc-252","target":"b6dc-61"},{"source":"b6dc-252","target":"b6dc-58"},{"source":"b6dc-57","target":"b6dc-18"},{"source":"b6dc-57","target":"b6dc-371"},{"source":"b6dc-57","target":"b6dc-367"},{"source":"b6dc-57","target":"b6dc-368"},{"source":"b6dc-255","target":"b6dc-18"},{"source":"b6dc-255","target":"b6dc-367"},{"source":"b6dc-255","target":"b6dc-225"},{"source":"b6dc-255","target":"b6dc-156"},{"source":"b6dc-255","target":"b6dc-22"},{"source":"b6dc-256","target":"b6dc-225"},{"source":"b6dc-272","target":"b6dc-367"},{"source":"b6dc-272","target":"b6dc-368"},{"source":"b6dc-272","target":"b6dc-271"},{"source":"b6dc-272","target":"b6dc-0"},{"source":"b6dc-272","target":"b6dc-58"},{"source":"b6dc-272","target":"b6dc-145"},{"source":"b6dc-272","target":"b6dc-68"},{"source":"b6dc-272","target":"b6dc-91"},{"source":"b6dc-272","target":"b6dc-55"},{"source":"b6dc-274","target":"b6dc-367"},{"source":"b6dc-274","target":"b6dc-68"},{"source":"b6dc-274","target":"b6dc-55"},{"source":"b6dc-275","target":"b6dc-0"},{"source":"b6dc-278","target":"b6dc-367"},{"source":"b6dc-278","target":"b6dc-55"},{"source":"b6dc-278","target":"b6dc-277"},{"source":"b6dc-278","target":"b6dc-57"},{"source":"b6dc-279","target":"b6dc-18"},{"source":"b6dc-279","target":"b6dc-367"},{"source":"b6dc-279","target":"b6dc-368"},{"source":"b6dc-279","target":"b6dc-86"},{"source":"b6dc-279","target":"b6dc-46"},{"source":"b6dc-279","target":"b6dc-55"},{"source":"b6dc-279","target":"b6dc-277"},{"source":"b6dc-279","target":"b6dc-57"},{"source":"b6dc-305","target":"b6dc-367"},{"source":"b6dc-305","target":"b6dc-55"},{"source":"b6dc-305","target":"b6dc-0"},{"source":"b6dc-305","target":"b6dc-304"},{"source":"b6dc-307","target":"b6dc-18"},{"source":"b6dc-307","target":"b6dc-367"},{"source":"b6dc-307","target":"b6dc-225"},{"source":"b6dc-307","target":"b6dc-22"},{"source":"b6dc-307","target":"b6dc-61"},{"source":"b6dc-307","target":"b6dc-156"},{"source":"b6dc-307","target":"b6dc-226"},{"source":"b6dc-308","target":"b6dc-18"},{"source":"b6dc-308","target":"b6dc-225"},{"source":"b6dc-310","target":"b6dc-367"},{"source":"b6dc-310","target":"b6dc-368"},{"source":"b6dc-310","target":"b6dc-94"},{"source":"b6dc-310","target":"b6dc-91"},{"source":"b6dc-310","target":"b6dc-55"},{"source":"b6dc-310","target":"b6dc-217"},{"source":"b6dc-313","target":"b6dc-18"},{"source":"b6dc-313","target":"b6dc-367"},{"source":"b6dc-313","target":"b6dc-55"},{"source":"b6dc-313","target":"b6dc-312"},{"source":"b6dc-313","target":"b6dc-22"},{"source":"b6dc-313","target":"b6dc-57"},{"source":"b6dc-313","target":"b6dc-235"},{"source":"b6dc-313","target":"b6dc-190"},{"source":"b6dc-313","target":"b6dc-193"},{"source":"b6dc-313","target":"b6dc-68"},{"source":"b6dc-313","target":"b6dc-217"},{"source":"b6dc-318","target":"b6dc-18"},{"source":"b6dc-318","target":"b6dc-367"},{"source":"b6dc-318","target":"b6dc-368"},{"source":"b6dc-318","target":"b6dc-369"},{"source":"b6dc-318","target":"b6dc-97"},{"source":"b6dc-318","target":"b6dc-225"},{"source":"b6dc-318","target":"b6dc-135"},{"source":"b6dc-318","target":"b6dc-156"},{"source":"b6dc-318","target":"b6dc-64"},{"source":"b6dc-318","target":"b6dc-317"},{"source":"b6dc-318","target":"b6dc-22"},{"source":"b6dc-319","target":"b6dc-225"},{"source":"b6dc-321","target":"b6dc-18"},{"source":"b6dc-321","target":"b6dc-367"},{"source":"b6dc-321","target":"b6dc-225"},{"source":"b6dc-321","target":"b6dc-369"},{"source":"b6dc-321","target":"b6dc-22"},{"source":"b6dc-321","target":"b6dc-226"},{"source":"b6dc-321","target":"b6dc-156"},{"source":"b6dc-321","target":"b6dc-55"},{"source":"b6dc-321","target":"b6dc-64"},{"source":"b6dc-322","target":"b6dc-225"},{"source":"b6dc-324","target":"b6dc-18"},{"source":"b6dc-324","target":"b6dc-367"},{"source":"b6dc-324","target":"b6dc-226"},{"source":"b6dc-324","target":"b6dc-225"},{"source":"b6dc-324","target":"b6dc-149"},{"source":"b6dc-324","target":"b6dc-156"},{"source":"b6dc-324","target":"b6dc-22"},{"source":"b6dc-325","target":"b6dc-225"},{"source":"b6dc-328","target":"b6dc-18"},{"source":"b6dc-328","target":"b6dc-367"},{"source":"b6dc-328","target":"b6dc-368"},{"source":"b6dc-328","target":"b6dc-57"},{"source":"b6dc-328","target":"b6dc-327"},{"source":"b6dc-328","target":"b6dc-50"},{"source":"b6dc-328","target":"b6dc-214"},{"source":"b6dc-328","target":"b6dc-55"},{"source":"b6dc-328","target":"b6dc-22"},{"source":"b6dc-328","target":"b6dc-61"},{"source":"b6dc-328","target":"b6dc-0"},{"source":"b6dc-330","target":"b6dc-18"},{"source":"b6dc-330","target":"b6dc-367"},{"source":"b6dc-330","target":"b6dc-225"},{"source":"b6dc-330","target":"b6dc-205"},{"source":"b6dc-330","target":"b6dc-55"},{"source":"b6dc-330","target":"b6dc-156"},{"source":"b6dc-330","target":"b6dc-22"},{"source":"b6dc-331","target":"b6dc-225"},{"source":"b6dc-333","target":"b6dc-367"},{"source":"b6dc-333","target":"b6dc-368"},{"source":"b6dc-333","target":"b6dc-68"},{"source":"b6dc-333","target":"b6dc-145"},{"source":"b6dc-333","target":"b6dc-55"},{"source":"b6dc-333","target":"b6dc-0"},{"source":"b6dc-333","target":"b6dc-94"},{"source":"b6dc-333","target":"b6dc-185"},{"source":"b6dc-333","target":"b6dc-154"},{"source":"b6dc-333","target":"b6dc-156"},{"source":"b6dc-335","target":"b6dc-18"},{"source":"b6dc-335","target":"b6dc-367"},{"source":"b6dc-335","target":"b6dc-225"},{"source":"b6dc-335","target":"b6dc-205"},{"source":"b6dc-335","target":"b6dc-55"},{"source":"b6dc-335","target":"b6dc-156"},{"source":"b6dc-335","target":"b6dc-22"},{"source":"b6dc-336","target":"b6dc-225"},{"source":"b6dc-338","target":"b6dc-367"},{"source":"b6dc-338","target":"b6dc-368"},{"source":"b6dc-338","target":"b6dc-68"},{"source":"b6dc-338","target":"b6dc-145"},{"source":"b6dc-338","target":"b6dc-55"},{"source":"b6dc-338","target":"b6dc-0"},{"source":"b6dc-338","target":"b6dc-94"},{"source":"b6dc-338","target":"b6dc-185"},{"source":"b6dc-338","target":"b6dc-154"},{"source":"b6dc-338","target":"b6dc-156"},{"source":"b6dc-341","target":"b6dc-367"},{"source":"b6dc-341","target":"b6dc-55"},{"source":"b6dc-341","target":"b6dc-0"},{"source":"b6dc-341","target":"b6dc-61"},{"source":"b6dc-341","target":"b6dc-78"},{"source":"b6dc-341","target":"b6dc-58"},{"source":"b6dc-341","target":"b6dc-57"},{"source":"b6dc-341","target":"b6dc-340"},{"source":"b6dc-346","target":"b6dc-18"},{"source":"b6dc-346","target":"b6dc-367"},{"source":"b6dc-346","target":"b6dc-368"},{"source":"b6dc-346","target":"b6dc-97"},{"source":"b6dc-346","target":"b6dc-61"},{"source":"b6dc-346","target":"b6dc-55"},{"source":"b6dc-346","target":"b6dc-141"},{"source":"b6dc-346","target":"b6dc-58"},{"source":"b6dc-346","target":"b6dc-345"},{"source":"b6dc-344","target":"b6dc-367"},{"source":"b6dc-344","target":"b6dc-273"},{"source":"b6dc-344","target":"b6dc-61"},{"source":"b6dc-344","target":"b6dc-55"},{"source":"b6dc-344","target":"b6dc-343"},{"source":"b6dc-344","target":"b6dc-57"},{"source":"b6dc-348","target":"b6dc-367"},{"source":"b6dc-348","target":"b6dc-68"},{"source":"b6dc-348","target":"b6dc-145"},{"source":"b6dc-348","target":"b6dc-0"},{"source":"b6dc-348","target":"b6dc-58"},{"source":"b6dc-348","target":"b6dc-94"},{"source":"b6dc-348","target":"b6dc-55"},{"source":"b6dc-352","target":"b6dc-367"},{"source":"b6dc-352","target":"b6dc-368"},{"source":"b6dc-352","target":"b6dc-351"},{"source":"b6dc-352","target":"b6dc-57"},{"source":"b6dc-352","target":"b6dc-154"},{"source":"b6dc-352","target":"b6dc-55"},{"source":"b6dc-354","target":"b6dc-367"},{"source":"b6dc-354","target":"b6dc-368"},{"source":"b6dc-354","target":"b6dc-351"},{"source":"b6dc-354","target":"b6dc-57"},{"source":"b6dc-354","target":"b6dc-154"},{"source":"b6dc-354","target":"b6dc-55"},{"source":"b6dc-356","target":"b6dc-367"},{"source":"b6dc-356","target":"b6dc-368"},{"source":"b6dc-356","target":"b6dc-351"},{"source":"b6dc-356","target":"b6dc-57"},{"source":"b6dc-356","target":"b6dc-154"},{"source":"b6dc-356","target":"b6dc-55"},{"source":"b6dc-358","target":"b6dc-367"},{"source":"b6dc-358","target":"b6dc-368"},{"source":"b6dc-358","target":"b6dc-351"},{"source":"b6dc-358","target":"b6dc-57"},{"source":"b6dc-358","target":"b6dc-154"},{"source":"b6dc-358","target":"b6dc-55"},{"source":"b6dc-360","target":"b6dc-367"},{"source":"b6dc-360","target":"b6dc-368"},{"source":"b6dc-360","target":"b6dc-351"},{"source":"b6dc-360","target":"b6dc-57"},{"source":"b6dc-360","target":"b6dc-154"},{"source":"b6dc-360","target":"b6dc-55"},{"source":"b6dc-148","target":"b6dc-367"},{"source":"b6dc-17","target":"b6dc-1"},{"source":"b6dc-17","target":"b6dc-2"},{"source":"b6dc-17","target":"b6dc-3"},{"source":"b6dc-17","target":"b6dc-4"},{"source":"b6dc-17","target":"b6dc-5"},{"source":"b6dc-17","target":"b6dc-6"},{"source":"b6dc-17","target":"b6dc-7"},{"source":"b6dc-17","target":"b6dc-8"},{"source":"b6dc-17","target":"b6dc-9"},{"source":"b6dc-17","target":"b6dc-10"},{"source":"b6dc-17","target":"b6dc-11"},{"source":"b6dc-17","target":"b6dc-12"},{"source":"b6dc-17","target":"b6dc-13"},{"source":"b6dc-17","target":"b6dc-14"},{"source":"b6dc-17","target":"b6dc-15"},{"source":"b6dc-17","target":"b6dc-16"},{"source":"b6dc-62","target":"b6dc-0"},{"source":"b6dc-72","target":"b6dc-0"},{"source":"b6dc-86","target":"b6dc-42"},{"source":"b6dc-86","target":"b6dc-367"},{"source":"b6dc-86","target":"b6dc-83"},{"source":"b6dc-86","target":"b6dc-85"},{"source":"b6dc-86","target":"b6dc-43"},{"source":"b6dc-89","target":"b6dc-88"},{"source":"b6dc-95","target":"b6dc-0"},{"source":"b6dc-98","target":"b6dc-0"},{"source":"b6dc-102","target":"b6dc-101"},{"source":"b6dc-139","target":"b6dc-0"},{"source":"b6dc-128","target":"b6dc-20"},{"source":"b6dc-128","target":"b6dc-121"},{"source":"b6dc-128","target":"b6dc-119"},{"source":"b6dc-128","target":"b6dc-122"},{"source":"b6dc-128","target":"b6dc-123"},{"source":"b6dc-128","target":"b6dc-113"},{"source":"b6dc-128","target":"b6dc-116"},{"source":"b6dc-128","target":"b6dc-114"},{"source":"b6dc-128","target":"b6dc-128"},{"source":"b6dc-128","target":"b6dc-124"},{"source":"b6dc-128","target":"b6dc-120"},{"source":"b6dc-128","target":"b6dc-125"},{"source":"b6dc-128","target":"b6dc-126"},{"source":"b6dc-128","target":"b6dc-117"},{"source":"b6dc-128","target":"b6dc-118"},{"source":"b6dc-128","target":"b6dc-115"},{"source":"b6dc-128","target":"b6dc-127"},{"source":"b6dc-129","target":"b6dc-367"},{"source":"b6dc-130","target":"b6dc-0"},{"source":"b6dc-150","target":"b6dc-0"},{"source":"b6dc-150","target":"b6dc-58"},{"source":"b6dc-133","target":"b6dc-18"},{"source":"b6dc-133","target":"b6dc-368"},{"source":"b6dc-133","target":"b6dc-0"},{"source":"b6dc-133","target":"b6dc-58"},{"source":"b6dc-157","target":"b6dc-0"},{"source":"b6dc-161","target":"b6dc-0"},{"source":"b6dc-65","target":"b6dc-18"},{"source":"b6dc-65","target":"b6dc-368"},{"source":"b6dc-166","target":"b6dc-0"},{"source":"b6dc-19","target":"b6dc-18"},{"source":"b6dc-19","target":"b6dc-367"},{"source":"b6dc-19","target":"b6dc-368"},{"source":"b6dc-24","target":"b6dc-18"},{"source":"b6dc-24","target":"b6dc-368"},{"source":"b6dc-26","target":"b6dc-18"},{"source":"b6dc-26","target":"b6dc-368"},{"source":"b6dc-28","target":"b6dc-18"},{"source":"b6dc-28","target":"b6dc-368"},{"source":"b6dc-30","target":"b6dc-18"},{"source":"b6dc-30","target":"b6dc-368"},{"source":"b6dc-32","target":"b6dc-18"},{"source":"b6dc-32","target":"b6dc-368"},{"source":"b6dc-34","target":"b6dc-18"},{"source":"b6dc-34","target":"b6dc-368"},{"source":"b6dc-36","target":"b6dc-18"},{"source":"b6dc-36","target":"b6dc-368"},{"source":"b6dc-38","target":"b6dc-18"},{"source":"b6dc-38","target":"b6dc-368"},{"source":"b6dc-40","target":"b6dc-18"},{"source":"b6dc-40","target":"b6dc-368"},{"source":"b6dc-51","target":"b6dc-18"},{"source":"b6dc-51","target":"b6dc-368"},{"source":"b6dc-51","target":"b6dc-50"},{"source":"b6dc-53","target":"b6dc-18"},{"source":"b6dc-53","target":"b6dc-368"},{"source":"b6dc-74","target":"b6dc-18"},{"source":"b6dc-74","target":"b6dc-367"},{"source":"b6dc-74","target":"b6dc-368"},{"source":"b6dc-76","target":"b6dc-18"},{"source":"b6dc-76","target":"b6dc-367"},{"source":"b6dc-76","target":"b6dc-368"},{"source":"b6dc-76","target":"b6dc-370"},{"source":"b6dc-143","target":"b6dc-18"},{"source":"b6dc-143","target":"b6dc-368"},{"source":"b6dc-203","target":"b6dc-18"},{"source":"b6dc-203","target":"b6dc-369"},{"source":"b6dc-206","target":"b6dc-0"},{"source":"b6dc-209","target":"b6dc-0"},{"source":"b6dc-212","target":"b6dc-0"},{"source":"b6dc-215","target":"b6dc-0"},{"source":"b6dc-59","target":"b6dc-18"},{"source":"b6dc-59","target":"b6dc-368"},{"source":"b6dc-221","target":"b6dc-0"},{"source":"b6dc-50","target":"b6dc-42"},{"source":"b6dc-50","target":"b6dc-367"},{"source":"b6dc-50","target":"b6dc-44"},{"source":"b6dc-50","target":"b6dc-47"},{"source":"b6dc-50","target":"b6dc-48"},{"source":"b6dc-50","target":"b6dc-43"},{"source":"b6dc-50","target":"b6dc-45"},{"source":"b6dc-50","target":"b6dc-49"},{"source":"b6dc-50","target":"b6dc-46"},{"source":"b6dc-239","target":"b6dc-18"},{"source":"b6dc-239","target":"b6dc-368"},{"source":"b6dc-239","target":"b6dc-0"},{"source":"b6dc-242","target":"b6dc-18"},{"source":"b6dc-242","target":"b6dc-368"},{"source":"b6dc-242","target":"b6dc-0"},{"source":"b6dc-271","target":"b6dc-367"},{"source":"b6dc-271","target":"b6dc-265"},{"source":"b6dc-271","target":"b6dc-266"},{"source":"b6dc-271","target":"b6dc-267"},{"source":"b6dc-271","target":"b6dc-148"},{"source":"b6dc-271","target":"b6dc-268"},{"source":"b6dc-271","target":"b6dc-269"},{"source":"b6dc-271","target":"b6dc-270"},{"source":"b6dc-304","target":"b6dc-300"},{"source":"b6dc-304","target":"b6dc-301"},{"source":"b6dc-304","target":"b6dc-302"},{"source":"b6dc-304","target":"b6dc-303"},{"source":"b6dc-317","target":"b6dc-316"},{"source":"b6dc-327","target":"b6dc-0"},{"source":"b6dc-343","target":"b6dc-58"},{"source":"b6dc-1","target":"b6dc-367"},{"source":"b6dc-1","target":"b6dc-0"},{"source":"b6dc-2","target":"b6dc-367"},{"source":"b6dc-2","target":"b6dc-0"},{"source":"b6dc-3","target":"b6dc-367"},{"source":"b6dc-3","target":"b6dc-0"},{"source":"b6dc-4","target":"b6dc-367"},{"source":"b6dc-4","target":"b6dc-0"},{"source":"b6dc-5","target":"b6dc-367"},{"source":"b6dc-5","target":"b6dc-0"},{"source":"b6dc-6","target":"b6dc-367"},{"source":"b6dc-6","target":"b6dc-0"},{"source":"b6dc-7","target":"b6dc-367"},{"source":"b6dc-7","target":"b6dc-0"},{"source":"b6dc-8","target":"b6dc-367"},{"source":"b6dc-8","target":"b6dc-0"},{"source":"b6dc-9","target":"b6dc-367"},{"source":"b6dc-9","target":"b6dc-0"},{"source":"b6dc-10","target":"b6dc-367"},{"source":"b6dc-10","target":"b6dc-0"},{"source":"b6dc-11","target":"b6dc-367"},{"source":"b6dc-11","target":"b6dc-0"},{"source":"b6dc-12","target":"b6dc-367"},{"source":"b6dc-13","target":"b6dc-367"},{"source":"b6dc-14","target":"b6dc-367"},{"source":"b6dc-15","target":"b6dc-367"},{"source":"b6dc-16","target":"b6dc-367"},{"source":"b6dc-16","target":"b6dc-0"},{"source":"b6dc-83","target":"b6dc-81"},{"source":"b6dc-83","target":"b6dc-46"},{"source":"b6dc-83","target":"b6dc-45"},{"source":"b6dc-83","target":"b6dc-82"},{"source":"b6dc-83","target":"b6dc-43"},{"source":"b6dc-85","target":"b6dc-84"},{"source":"b6dc-88","target":"b6dc-18"},{"source":"b6dc-88","target":"b6dc-367"},{"source":"b6dc-88","target":"b6dc-368"},{"source":"b6dc-88","target":"b6dc-86"},{"source":"b6dc-88","target":"b6dc-46"},{"source":"b6dc-101","target":"b6dc-100"},{"source":"b6dc-121","target":"b6dc-20"},{"source":"b6dc-121","target":"b6dc-112"},{"source":"b6dc-121","target":"b6dc-119"},{"source":"b6dc-121","target":"b6dc-113"},{"source":"b6dc-121","target":"b6dc-116"},{"source":"b6dc-121","target":"b6dc-114"},{"source":"b6dc-121","target":"b6dc-107"},{"source":"b6dc-121","target":"b6dc-120"},{"source":"b6dc-121","target":"b6dc-117"},{"source":"b6dc-121","target":"b6dc-118"},{"source":"b6dc-121","target":"b6dc-115"},{"source":"b6dc-119","target":"b6dc-20"},{"source":"b6dc-119","target":"b6dc-112"},{"source":"b6dc-119","target":"b6dc-113"},{"source":"b6dc-119","target":"b6dc-116"},{"source":"b6dc-119","target":"b6dc-107"},{"source":"b6dc-119","target":"b6dc-117"},{"source":"b6dc-119","target":"b6dc-118"},{"source":"b6dc-122","target":"b6dc-20"},{"source":"b6dc-122","target":"b6dc-112"},{"source":"b6dc-122","target":"b6dc-113"},{"source":"b6dc-122","target":"b6dc-116"},{"source":"b6dc-122","target":"b6dc-107"},{"source":"b6dc-122","target":"b6dc-117"},{"source":"b6dc-122","target":"b6dc-118"},{"source":"b6dc-123","target":"b6dc-20"},{"source":"b6dc-123","target":"b6dc-112"},{"source":"b6dc-123","target":"b6dc-113"},{"source":"b6dc-123","target":"b6dc-116"},{"source":"b6dc-123","target":"b6dc-107"},{"source":"b6dc-123","target":"b6dc-117"},{"source":"b6dc-123","target":"b6dc-118"},{"source":"b6dc-113","target":"b6dc-20"},{"source":"b6dc-116","target":"b6dc-20"},{"source":"b6dc-116","target":"b6dc-114"},{"source":"b6dc-116","target":"b6dc-115"},{"source":"b6dc-114","target":"b6dc-20"},{"source":"b6dc-124","target":"b6dc-121"},{"source":"b6dc-120","target":"b6dc-119"},{"source":"b6dc-125","target":"b6dc-122"},{"source":"b6dc-126","target":"b6dc-123"},{"source":"b6dc-117","target":"b6dc-113"},{"source":"b6dc-118","target":"b6dc-116"},{"source":"b6dc-115","target":"b6dc-114"},{"source":"b6dc-127","target":"b6dc-128"},{"source":"b6dc-44","target":"b6dc-43"},{"source":"b6dc-47","target":"b6dc-45"},{"source":"b6dc-47","target":"b6dc-43"},{"source":"b6dc-47","target":"b6dc-44"},{"source":"b6dc-47","target":"b6dc-46"},{"source":"b6dc-48","target":"b6dc-42"},{"source":"b6dc-48","target":"b6dc-44"},{"source":"b6dc-48","target":"b6dc-45"},{"source":"b6dc-48","target":"b6dc-43"},{"source":"b6dc-49","target":"b6dc-42"},{"source":"b6dc-49","target":"b6dc-47"},{"source":"b6dc-49","target":"b6dc-44"},{"source":"b6dc-49","target":"b6dc-45"},{"source":"b6dc-49","target":"b6dc-46"},{"source":"b6dc-49","target":"b6dc-43"},{"source":"b6dc-265","target":"b6dc-367"},{"source":"b6dc-265","target":"b6dc-372"},{"source":"b6dc-265","target":"b6dc-262"},{"source":"b6dc-265","target":"b6dc-148"},{"source":"b6dc-265","target":"b6dc-263"},{"source":"b6dc-265","target":"b6dc-264"},{"source":"b6dc-266","target":"b6dc-20"},{"source":"b6dc-266","target":"b6dc-367"},{"source":"b6dc-266","target":"b6dc-372"},{"source":"b6dc-266","target":"b6dc-148"},{"source":"b6dc-266","target":"b6dc-263"},{"source":"b6dc-267","target":"b6dc-20"},{"source":"b6dc-268","target":"b6dc-265"},{"source":"b6dc-269","target":"b6dc-266"},{"source":"b6dc-270","target":"b6dc-267"},{"source":"b6dc-300","target":"b6dc-18"},{"source":"b6dc-300","target":"b6dc-367"},{"source":"b6dc-300","target":"b6dc-299"},{"source":"b6dc-300","target":"b6dc-55"},{"source":"b6dc-301","target":"b6dc-367"},{"source":"b6dc-301","target":"b6dc-55"},{"source":"b6dc-301","target":"b6dc-68"},{"source":"b6dc-301","target":"b6dc-61"},{"source":"b6dc-301","target":"b6dc-58"},{"source":"b6dc-302","target":"b6dc-367"},{"source":"b6dc-302","target":"b6dc-61"},{"source":"b6dc-302","target":"b6dc-71"},{"source":"b6dc-302","target":"b6dc-55"},{"source":"b6dc-302","target":"b6dc-58"},{"source":"b6dc-302","target":"b6dc-0"},{"source":"b6dc-302","target":"b6dc-22"},{"source":"b6dc-303","target":"b6dc-18"},{"source":"b6dc-303","target":"b6dc-367"},{"source":"b6dc-303","target":"b6dc-55"},{"source":"b6dc-303","target":"b6dc-91"},{"source":"b6dc-303","target":"b6dc-0"},{"source":"b6dc-316","target":"b6dc-367"},{"source":"b6dc-316","target":"b6dc-273"},{"source":"b6dc-316","target":"b6dc-61"},{"source":"b6dc-316","target":"b6dc-145"},{"source":"b6dc-316","target":"b6dc-55"},{"source":"b6dc-316","target":"b6dc-315"},{"source":"b6dc-316","target":"b6dc-57"},{"source":"b6dc-316","target":"b6dc-185"},{"source":"b6dc-81","target":"b6dc-42"},{"source":"b6dc-81","target":"b6dc-47"},{"source":"b6dc-81","target":"b6dc-44"},{"source":"b6dc-81","target":"b6dc-45"},{"source":"b6dc-81","target":"b6dc-46"},{"source":"b6dc-81","target":"b6dc-48"},{"source":"b6dc-81","target":"b6dc-43"},{"source":"b6dc-82","target":"b6dc-42"},{"source":"b6dc-82","target":"b6dc-43"},{"source":"b6dc-100","target":"b6dc-18"},{"source":"b6dc-100","target":"b6dc-367"},{"source":"b6dc-100","target":"b6dc-368"},{"source":"b6dc-100","target":"b6dc-99"},{"source":"b6dc-112","target":"b6dc-20"},{"source":"b6dc-112","target":"b6dc-105"},{"source":"b6dc-112","target":"b6dc-109"},{"source":"b6dc-112","target":"b6dc-110"},{"source":"b6dc-112","target":"b6dc-111"},{"source":"b6dc-107","target":"b6dc-112"},{"source":"b6dc-262","target":"b6dc-258"},{"source":"b6dc-262","target":"b6dc-259"},{"source":"b6dc-262","target":"b6dc-260"},{"source":"b6dc-262","target":"b6dc-261"},{"source":"b6dc-263","target":"b6dc-372"},{"source":"b6dc-264","target":"b6dc-262"},{"source":"b6dc-299","target":"b6dc-18"},{"source":"b6dc-299","target":"b6dc-281"},{"source":"b6dc-299","target":"b6dc-282"},{"source":"b6dc-299","target":"b6dc-283"},{"source":"b6dc-299","target":"b6dc-284"},{"source":"b6dc-299","target":"b6dc-285"},{"source":"b6dc-299","target":"b6dc-286"},{"source":"b6dc-299","target":"b6dc-287"},{"source":"b6dc-299","target":"b6dc-288"},{"source":"b6dc-299","target":"b6dc-289"},{"source":"b6dc-299","target":"b6dc-290"},{"source":"b6dc-299","target":"b6dc-291"},{"source":"b6dc-299","target":"b6dc-292"},{"source":"b6dc-299","target":"b6dc-293"},{"source":"b6dc-299","target":"b6dc-294"},{"source":"b6dc-299","target":"b6dc-295"},{"source":"b6dc-299","target":"b6dc-296"},{"source":"b6dc-299","target":"b6dc-297"},{"source":"b6dc-299","target":"b6dc-298"},{"source":"b6dc-315","target":"b6dc-58"},{"source":"b6dc-109","target":"b6dc-20"},{"source":"b6dc-109","target":"b6dc-112"},{"source":"b6dc-109","target":"b6dc-106"},{"source":"b6dc-109","target":"b6dc-107"},{"source":"b6dc-109","target":"b6dc-108"},{"source":"b6dc-110","target":"b6dc-105"},{"source":"b6dc-111","target":"b6dc-109"},{"source":"b6dc-260","target":"b6dc-258"},{"source":"b6dc-261","target":"b6dc-259"},{"source":"b6dc-281","target":"b6dc-367"},{"source":"b6dc-282","target":"b6dc-367"},{"source":"b6dc-283","target":"b6dc-367"},{"source":"b6dc-284","target":"b6dc-367"},{"source":"b6dc-285","target":"b6dc-367"},{"source":"b6dc-286","target":"b6dc-367"},{"source":"b6dc-287","target":"b6dc-367"},{"source":"b6dc-288","target":"b6dc-367"},{"source":"b6dc-289","target":"b6dc-367"},{"source":"b6dc-290","target":"b6dc-367"},{"source":"b6dc-291","target":"b6dc-367"},{"source":"b6dc-292","target":"b6dc-367"},{"source":"b6dc-293","target":"b6dc-367"},{"source":"b6dc-294","target":"b6dc-367"},{"source":"b6dc-295","target":"b6dc-367"},{"source":"b6dc-296","target":"b6dc-367"},{"source":"b6dc-297","target":"b6dc-367"},{"source":"b6dc-298","target":"b6dc-367"},{"source":"b6dc-106","target":"b6dc-20"},{"source":"b6dc-108","target":"b6dc-106"}],"env":{"rollup":"1.32.1","rollup-plugin-visualizer":"4.0.4"},"options":{"gzip":false,"brotli":false}};
2642
-
2643
- document.addEventListener('DOMContentLoaded', () => {
2644
- const width = chartParameters.width || window.innerWidth;
2645
- const height = chartParameters.height || window.innerHeight;
2646
-
2647
- const chartNode = document.querySelector("main");
2648
- drawChart(chartNode, data, width, height);
2649
- });
2650
- </script>
2651
- </body>
2652
- </html>