nanoplot 0.0.2 → 0.0.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.
- package/CONTRIBUTIONS.md +24 -0
- package/README.md +26 -20
- package/bun.lockb +0 -0
- package/cypress.config.ts +14 -0
- package/dist/BarGraph/BarGraph.js +1 -0
- package/dist/Bars/Bars.js +1 -0
- package/dist/Graph/Graph.js +1 -0
- package/dist/GridLines/GridLines.js +1 -0
- package/dist/Legend/Legend.js +1 -0
- package/dist/LineGraph/LineGraph.js +1 -0
- package/dist/Lines/Lines.js +1 -0
- package/dist/Pie/Pie.js +1 -0
- package/dist/PieGraph/PieGraph.js +1 -0
- package/dist/Radar/Radar.js +2 -0
- package/dist/Scatter/Scatter.js +1 -0
- package/dist/Sunburst/Sunburst.js +1 -0
- package/dist/Worldmap/Worldmap.css +1 -0
- package/dist/Worldmap/Worldmap.js +1 -0
- package/dist/XAxis/XAxis.js +1 -0
- package/dist/YAxis/YAxis.js +1 -0
- package/dist/chunk-27FBH32H.js +1 -0
- package/dist/chunk-5J6HXUF6.js +1 -0
- package/dist/chunk-DCUZK3HV.js +1 -0
- package/dist/chunk-E6PTL7SI.js +1 -0
- package/dist/chunk-I554ST6O.js +1 -0
- package/dist/chunk-IPNLOTJZ.js +1 -0
- package/dist/chunk-JRRAKL7W.js +1 -0
- package/dist/chunk-LALBDKPZ.js +1 -0
- package/dist/chunk-Y5BEPFEI.js +1 -0
- package/dist/chunk-YFBVZ3EG.js +1 -0
- package/dist/components/Axis/XAxis/XAxis.d.ts +50 -0
- package/dist/components/Axis/YAxis/YAxis.d.ts +50 -0
- package/dist/components/Bars/Bars.d.ts +3 -0
- package/dist/components/Bars/components/VerticalBars.d.ts +6 -0
- package/dist/components/Graph/Graph.d.ts +22 -0
- package/dist/components/GridLines/GridLines.d.ts +9 -0
- package/dist/components/Legend/Legend.d.ts +44 -0
- package/dist/components/Lines/Lines.d.ts +6 -0
- package/dist/components/Overlay/Overlay.d.ts +9 -0
- package/dist/components/Pie/Pie.d.ts +9 -0
- package/dist/components/PieGraph/PieGraph.d.ts +9 -0
- package/dist/components/Radar/Radar.d.ts +8 -0
- package/dist/components/Radar/components/RadarSkeleton.d.ts +3 -0
- package/dist/components/Scatter/Scatter.d.ts +5 -0
- package/dist/components/ScatterGraph/ScatterGraph.d.ts +5 -0
- package/dist/components/Sunburst/Sunburst.d.ts +10 -0
- package/dist/components/Tooltip/Popup.d.ts +9 -0
- package/dist/components/Worldmap/Worldmap.d.ts +328 -0
- package/dist/components/XAxis/XAxis.d.ts +50 -0
- package/dist/components/YAxis/YAxis.d.ts +50 -0
- package/dist/export/index.d.ts +14 -1
- package/dist/hooks/use-graph/use-client-graph.d.ts +7 -0
- package/dist/hooks/use-graph/use-graph.d.ts +58 -0
- package/dist/hooks/use-tether.d.ts +38 -0
- package/dist/index.css +2 -0
- package/dist/library-global.css.map +7 -0
- package/dist/tsconfig.typings.tsbuildinfo +1 -0
- package/dist/utils/children/children.d.ts +5 -0
- package/dist/utils/color/color.d.ts +4 -0
- package/dist/utils/coordinates/coordinates.d.ts +5 -0
- package/dist/utils/countries.d.ts +136 -0
- package/dist/utils/cx/cx.d.ts +3 -0
- package/dist/utils/domain/domain.d.ts +17 -0
- package/dist/utils/graph/graph.d.ts +5 -0
- package/dist/utils/math/math.d.ts +4 -0
- package/dist/utils/path/path.d.ts +24 -0
- package/esbuild.js +70 -0
- package/package.json +67 -9
- package/rollup.config.mjs +74 -0
- package/tsconfig.json +27 -26
- package/tsconfig.typings.json +16 -0
- package/.idea/codeStyles/Project.xml +0 -61
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/modules.xml +0 -8
- package/.idea/nanoplotx.iml +0 -12
- package/.idea/prettier.xml +0 -7
- package/.idea/vcs.xml +0 -6
- package/bunfig.toml +0 -2
- package/dist/index.js +0 -1
package/CONTRIBUTIONS.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
### Get started
|
|
2
|
+
Step 1: Fork the Repository
|
|
3
|
+
|
|
4
|
+
Click the Fork Button: In the upper right corner of the repository page, click on the Fork button. This will create a copy of the repository under your GitHub account.
|
|
5
|
+
Step 2: Clone your Forked Repository
|
|
6
|
+
|
|
7
|
+
Go to Your Forked Repository:
|
|
8
|
+
Navigate to your GitHub profile and find the newly forked repository.
|
|
9
|
+
Copy the Clone URL:
|
|
10
|
+
Click on the green Code button.
|
|
11
|
+
Choose either HTTPS, SSH, or GitHub CLI based on your preference and copy the URL.
|
|
12
|
+
Open Your Terminal: Open a terminal or command prompt on your local machine.
|
|
13
|
+
Run the Clone Command: Use the git clone https//xxxx.git command to clone your forked repository:
|
|
14
|
+
|
|
15
|
+
Step 3:
|
|
16
|
+
Navigate into Your Cloned Repository and install bun packages cd nanoplot
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
bun i
|
|
20
|
+
bun run dev
|
|
21
|
+
```
|
|
22
|
+
The application should run locally on your machine on port: 3000
|
|
23
|
+
|
|
24
|
+
Step 4: Start Implementing
|
package/README.md
CHANGED
|
@@ -1,20 +1,26 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
<a href="https://nanoplot.com">
|
|
3
|
+
<img src="https://nanoplot.com/nanoplot_logo.jpg" alt="Nanoplot Logo" width="80" height="80" />
|
|
4
|
+
</a>
|
|
5
|
+
<h1>Nanoplot</h1>
|
|
6
|
+
</div>
|
|
7
|
+
|
|
8
|
+
## Getting Started
|
|
9
|
+
```shell
|
|
10
|
+
npm install nanoplot
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Documentation
|
|
14
|
+
The world's smallest companies use our software to plot their data.
|
|
15
|
+
|
|
16
|
+
- Visit our [Learn Nanoplot](https://nanoplot.com) documentation website to get started.
|
|
17
|
+
|
|
18
|
+
## Usage
|
|
19
|
+
```javascript
|
|
20
|
+
import { Graph, Pie } from 'nanoplot';
|
|
21
|
+
|
|
22
|
+
<Graph data={[{name: "Male", value: 50}, {name: "Female", value: 50}]}>
|
|
23
|
+
<Pie />
|
|
24
|
+
</Graph>
|
|
25
|
+
```
|
|
26
|
+
|
package/bun.lockb
CHANGED
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { defineConfig } from "cypress";
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
e2e: {
|
|
5
|
+
baseUrl: 'http://localhost:3000',
|
|
6
|
+
specPattern: 'src/**/*.e2e.ts', // Updated to look for test files in src
|
|
7
|
+
setupNodeEvents(on, config) {
|
|
8
|
+
// implement node event listeners here
|
|
9
|
+
},
|
|
10
|
+
supportFile: false, // Optional, disable the default support file
|
|
11
|
+
},
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import"../chunk-5J6HXUF6.js";var r=({})=>React.createElement("div",null,"PLACEHOLDER");export{r as BarGraph};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as i}from"../chunk-I554ST6O.js";import{a as s}from"../chunk-YFBVZ3EG.js";import{a as m}from"../chunk-JRRAKL7W.js";import{a as c}from"../chunk-DCUZK3HV.js";import"../chunk-27FBH32H.js";import{c as p}from"../chunk-LALBDKPZ.js";import d from"react";var f=({children:a,className:u})=>{let t=p();if(!t||!m.isXYData(t.data))return null;let x=i.xCoordinateFor(t),h=i.yCoordinateFor(t),r=t.data.map((o,e,l)=>({...o,id:o.id??o.name,stroke:o.stroke??s.colorFor(e,l.length),fill:o.fill===!0?o.stroke??s.colorFor(e,l.length):o.fill,bar:o.group??o.name,data:o.data.map(n=>({x:x(n.x),y:h(n.y)}))}))[0],y=r.data[1].x-r.data[1].x/2;return d.createElement("svg",{viewBox:`0 0 ${t.viewbox.x} ${t.viewbox.y}`,className:c("[grid-area:graph] h-full w-full",u),preserveAspectRatio:"none"},r.data.map((o,e)=>d.createElement("path",{key:e,d:`M ${o.x} ${t.viewbox.y} l0 ${-o.y} l${y} 0 l0 ${o.y} Z`,fill:"transparent",stroke:r.stroke,vectorEffect:"non-scaling-stroke",strokeWidth:1.5})),a)};var G=a=>React.createElement(f,{...a});export{G as Bars};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{b as a}from"../chunk-Y5BEPFEI.js";import"../chunk-JRRAKL7W.js";import"../chunk-DCUZK3HV.js";import"../chunk-27FBH32H.js";import"../chunk-LALBDKPZ.js";export{a as Graph};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as e}from"../chunk-DCUZK3HV.js";import{c as i}from"../chunk-LALBDKPZ.js";import t from"react";var h=({border:l,horizontal:c,vertical:d,className:f})=>{let n=i(),{x:o,y:s}=n.viewbox,{domain:a}=n;return t.createElement("svg",{viewBox:`0 0 ${o} ${s}`,className:e("[grid-area:graph] h-full w-full",f),preserveAspectRatio:"none"},l&&t.createElement("path",{d:`M 0 0 l${o} 0 l0 ${s} l${-o} 0 Z`,strokeWidth:3,vectorEffect:"non-scaling-stroke",fill:"transparent",className:e("stroke-foreground grid-lines__border")}),c&&t.createElement("path",{d:a.y.map(({coordinate:r})=>`M 0 ${r} L ${o} ${r}`).join(" "),strokeWidth:3,vectorEffect:"non-scaling-stroke",strokeDasharray:"4, 7",className:e("stroke-foreground grid-lines__horizontal")}),d&&t.createElement("path",{d:a.x.map(({coordinate:r})=>`M ${r} 0 L ${r} ${s}`).join(" "),strokeWidth:3,vectorEffect:"non-scaling-stroke",strokeDasharray:"4, 10",className:e("stroke-foreground grid-lines__vertical")}))};export{h as GridLines};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a}from"../chunk-YFBVZ3EG.js";import{b as n}from"../chunk-Y5BEPFEI.js";import"../chunk-JRRAKL7W.js";import{a as m}from"../chunk-DCUZK3HV.js";import"../chunk-27FBH32H.js";import{c as s}from"../chunk-LALBDKPZ.js";var f=({position:t="top",alignment:o="left"})=>{let e=s(),r=t==="top"||t==="bottom"?n.Row:n.Column;return React.createElement(r,{className:m("flex","gap-2",(t==="left"||t==="right")&&"flex-col",o==="left"&&"justify-start",o==="right"&&"justify-end",o==="center"&&"justify-center")},e.data?.map(({name:u,stroke:i},l,c)=>React.createElement("div",{key:l,className:"flex items-center"},React.createElement("div",{className:"size-4 mr-1 rounded-full",style:{background:i??a.colorFor(l,c.length)}}),React.createElement("div",null,u))))};f.context=(t,o)=>{let e=o.position==="top"?"max-content "+t.layout.rows:o.position==="bottom"?t.layout.rows+" max-content":t.layout.rows,r=o.position==="left"?"max-content "+t.layout.columns:o.position==="right"?t.layout.columns+" max-content":t.layout.columns;return{...t,layout:{...t.layout,rows:e,columns:r}}};export{f as Legend};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as d}from"../chunk-YFBVZ3EG.js";import{a as l}from"../chunk-JRRAKL7W.js";import{a as p}from"../chunk-27FBH32H.js";import{a as y}from"../chunk-E6PTL7SI.js";import"../chunk-5J6HXUF6.js";import g from"react";var m={xCoordinateFor:({domain:e,viewbox:n})=>{let a=Math.max(...e.x.map(({tick:r})=>+r)),f=Math.min(...e.x.map(({tick:r})=>+r));return r=>{if(typeof r=="string")return e.x.find(({tick:o})=>o===r)?.coordinate??n.x;if(a===f&&e.x.length===1)return e.x[0]?.coordinate??n.x;let t=+r;return t>a?n.x:t<f?0:e.x.reduce((o,{tick:i,coordinate:s},c)=>{if(o!==void 0)return o;let x=e.x[c+1],{coordinate:u,tick:h}=x;return p.isBetween(+t,+i,+h)?p.scale(t,[+i,+h],[s,u]):o},void 0)??0}},yCoordinateFor:({domain:e,viewbox:n})=>{let a=Math.max(...e.y.map(({tick:r})=>+r)),f=Math.min(...e.y.map(({tick:r})=>+r));return a===f?()=>e.y[0]?.coordinate??n.y:r=>+r>a?0:+r<f?n.y:typeof r=="string"?e.y.find(({tick:t})=>t===r)?.coordinate??n.y:e.y.reduce((t,{tick:o,coordinate:i},s)=>{if(t!==void 0||typeof o=="string")return t;let c=e.y[s+1];if(!c)return t;let{coordinate:x,tick:u}=c;return p.isBetween(+r,+o,+u)?p.scale(r,[+o,+u],[i,x]):t},void 0)??n.y}};var b=({children:e})=>{let n=y();if(!l.isXYData(n.data))return null;let a=m.xCoordinateFor(n),f=m.yCoordinateFor(n),r=n.data.map((t,o,i)=>({...t,id:t.id??t.name,stroke:t.stroke??d.colorFor(o,i.length),fill:t.fill===!0?t.stroke??d.colorFor(o,i.length):t.fill,data:t.data.map(s=>({x:a(s.x),y:f(s.y)}))}));return g.createElement("svg",{viewBox:`0 0 ${n.viewbox.x} ${n.viewbox.y}`,height:"100%",width:"100%",preserveAspectRatio:"none"},r.map((t,o)=>{let i=t.data.map((s,c)=>`${c===0?"M":"L"} ${s.x} ${s.y}`).join(" ");return g.createElement("path",{key:o,d:i,fill:"transparent",stroke:t.stroke,vectorEffect:"non-scaling-stroke",strokeWidth:1.5})}),e)};export{b as LineGraph};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as i}from"../chunk-I554ST6O.js";import{a as s}from"../chunk-YFBVZ3EG.js";import{a as p}from"../chunk-JRRAKL7W.js";import"../chunk-27FBH32H.js";import{c as n}from"../chunk-LALBDKPZ.js";import d from"react";var F=({children:c})=>{let t=n();if(!p.isXYData(t.data))return null;let m=i.xCoordinateFor(t),l=i.yCoordinateFor(t),f=t.data.map((o,e,a)=>({...o,id:o.id??o.name,stroke:o.stroke??s.colorFor(e,a.length),fill:o.fill===!0?o.stroke??s.colorFor(e,a.length):o.fill,data:o.data.map(r=>({x:m(r.x),y:l(r.y)}))}));return d.createElement("svg",{viewBox:`0 0 ${t.viewbox.x} ${t.viewbox.y}`,height:"100%",width:"100%",preserveAspectRatio:"none"},f.map((o,e)=>{let a=o.data.map((r,h)=>`${h===0?"M":"L"} ${r.x} ${r.y}`).join(" ");return d.createElement("path",{key:e,d:a,fill:"transparent",stroke:o.stroke,vectorEffect:"non-scaling-stroke",strokeWidth:1.5})}),c)};export{F as Lines};
|
package/dist/Pie/Pie.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as N}from"../chunk-YFBVZ3EG.js";import{a as s}from"../chunk-IPNLOTJZ.js";import{a as S}from"../chunk-JRRAKL7W.js";import{a as m}from"../chunk-DCUZK3HV.js";import{a as d}from"../chunk-27FBH32H.js";import{c as O}from"../chunk-LALBDKPZ.js";import{useId as T}from"react";var _=({children:l,tag:h,...n})=>React.createElement("div",{...n,className:m("[grid-area:graph]",n.className)},l),$=new Proxy(_,{get:function(l,h){return({children:n,...g})=>React.createElement(_,{...g,tag:h},n)}});var r=3e3,i=3e3,G=.8,W=({donut:l,labels:h=!0,loading:n,children:g})=>{let A=T(),L=T(),D=T(),v=O();if(!v||!S.isSegmentData(v.data))return null;let{data:x}=v,c=r/3*G,y=x.length===1,b=x.reduce((e,{value:t})=>e+Number(t),0);if(n)return React.createElement("svg",{viewBox:"0 0 3000 3000",role:"status","aria-busy":n,className:"h-full w-full"},React.createElement("path",{d:s.circleArc(r/2,i/2,c),className:"[filter:brightness(300%)] dark:[filter:brightness(100%)]"},React.createElement("animate",{attributeName:"fill",values:"#2d2d2d; #3c3c3c; #2d2d2d; #2d2d2d;",dur:"2s",repeatCount:"indefinite",calcMode:"spline",keyTimes:"0; 0.3; 0.6; 1",keySplines:"0.15 0.25 0.25 0.15; 0.15 0.25 0.25 0.15; 0 0 0 0"})),l&&React.createElement("path",{className:"",d:s.circleArc(r/2,i/2,c*.65)}));if(!v.data.length)return React.createElement(React.Fragment,null,React.createElement("svg",{"data-testid":"pie-empty-state",role:"img",viewBox:"0 0 3000 3000",height:"100%",width:"100%"},React.createElement("path",{d:"M 1500 1500 m 800, 1.9594348786357651e-13 a 800, 800 0 1,0 -1600, -3.9188697572715303e-13 a 800, 800 0 1,0 1600, 3.9188697572715303e-13",fill:`url(#${D})`,className:"[filter:invert(1)] dark:[filter:invert(0)]"}),React.createElement("linearGradient",{id:D,gradientTransform:"rotate(90)"},React.createElement("stop",{offset:"0%","stop-color":"#3c3c3c"}),React.createElement("stop",{offset:"100%","stop-color":"#3c3c3c","stop-opacity":"0.2"}))));let I=x.map((e,t,o)=>({...e,id:e.name??e.name,value:Number(e.value),stroke:e.stroke??N.colorFor(t,o.length),fill:typeof e.fill=="string"?e.fill:N.colorFor(t,o.length)})).sort((e,t)=>t.value-e.value).map((e,t,o)=>({...e,previousTotalDegrees:o.slice(0,t).map(({value:p})=>d.scale(p,b,360)).reduce((p,f)=>p+f,180),degrees:d.scale(e.value,b,360)})).map((e,t,o)=>{let p=s.polarToCartesian(r/2,i/2,c,e.previousTotalDegrees+e.degrees/(y?.75:2)+180),f=o.slice(0,t+1).map(a=>({name:a.name,position:s.polarToCartesian(r/2,i/2,c*1.2,a.previousTotalDegrees+a.degrees/(y?.75:2)+180)})).filter((a,P,E)=>{if(!E[P-1])return!1;let R=.15,{y:U,x:B}=a.position,{y:C,x:M}=E[P-1].position;return d.isBetween(C*(1-R),C*(1+R),U)&&d.isBetween(M*.7,M*1.3,B)}).map(a=>a.name).findIndex(a=>e.name===a),w=f>4,u=s.polarToCartesian(r/2,i/2,c*(1.2+.1*((w?f-4:f)+1)),e.previousTotalDegrees+e.degrees/(y?.75:2)+180),k=w||d.scale(u.x,r,100)>50,H=React.createElement("g",{className:"transform origin-center rotate-180 group",key:t},h&&React.createElement(React.Fragment,null,React.createElement("path",{className:"stroke-2 fill-transparent group-hover:stroke-[15] transform origin-center rotate-180",key:e.name,d:`M ${p.x} ${p.y} L ${u.x} ${u.y} ${k?"l 100 0":"l -100 0"}`,stroke:e.stroke}),React.createElement("g",{className:m("text-7xl font-bold pointer-events-auto transform origin-center rotate-180")},React.createElement("text",{"aria-label":`${e.name}-label`,y:u.y,x:u.x,stroke:e.stroke,fill:e.fill,dx:k?140:-140,style:{textAnchor:k?"start":"end"}},React.createElement("tspan",null,e.name.length>20?e.name.slice(0,20)+"...":e.name),React.createElement("tspan",{dx:25},+(Math.round(+((e.value/b*100).toFixed(1)+"e+2"))+"e-2"),"%")))),React.createElement("path",{className:"transition-all duration-200 ease-in-out scale-100 origin-center pointer-events-auto gorup-hover:drop-shadow-[0_0_50px_rgba(0,0,0,0.5)] hover:brightness-110 hover:scale-102",d:s.describeArc(r/2,i/2,c,e.previousTotalDegrees,e.previousTotalDegrees+e.degrees)+` L ${r/2} ${r/2} Z`,fill:e.fill,"data-degrees":e.degrees}));return{id:e.id,path:H}});return React.createElement(React.Fragment,null,l&&React.createElement($.div,{className:"absolute inset-0 flex items-center justify-center"},g),I.map(({path:e,id:t},o)=>React.createElement("svg",{key:o,viewBox:`0 0 ${r} ${i}`,role:"img",className:m("[grid-area:graph] pointer-events-none h-full w-full has-[path:hover]:z-[1] has-[path:hover]:[&_.label-path]:stroke-current",l&&"mask-radial [mask-position:50%_50%] [mask-repeat:no-repeat] [mask-image:radial-gradient(circle,transparent_14%,black_14.1%)]")},React.createElement("filter",{id:A+t,filterUnits:"userSpaceOnUse"},React.createElement("feDropShadow",{dx:"0",dy:"-150",stdDeviation:"100",floodColor:"#000000",floodOpacity:"0.4"}),React.createElement("feDropShadow",{dx:"0",dy:"200",stdDeviation:"100",floodColor:"#000000",floodOpacity:"0.5"})),React.createElement("use",{xlinkHref:`#${L+t}`,filter:"blur(150px)",opacity:.5,scale:.9}),React.createElement("g",{id:L+t},e),l&&React.createElement("path",{className:"",d:s.circleArc(r/2,i/2,c*.65)}))))};export{W as Pie};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as N}from"../chunk-YFBVZ3EG.js";import{a as m}from"../chunk-DCUZK3HV.js";import{a as S}from"../chunk-JRRAKL7W.js";import{a as d}from"../chunk-27FBH32H.js";import{a as s}from"../chunk-IPNLOTJZ.js";import{a as O}from"../chunk-E6PTL7SI.js";import"../chunk-5J6HXUF6.js";import{useId as T}from"react";var _=({children:l,tag:h,...n})=>React.createElement("div",{...n,className:m("[grid-area:graph]",n.className)},l),$=new Proxy(_,{get:function(l,h){return({children:n,...x})=>React.createElement(_,{...x,tag:h},n)}});var r=3e3,i=3e3,B=.8,ee=({donut:l,labels:h=!0,loading:n,children:x})=>{let A=T(),L=T(),D=T(),v=O();if(!v||!S.isSegmentData(v.data))return null;let{data:g}=v,c=r/3*B,y=g.length===1,b=g.reduce((e,{value:t})=>e+Number(t),0);if(n)return React.createElement("svg",{viewBox:"0 0 3000 3000",role:"status","aria-busy":n,className:"h-full w-full"},React.createElement("path",{d:s.circleArc(r/2,i/2,c),className:"[filter:brightness(300%)] dark:[filter:brightness(100%)]"},React.createElement("animate",{attributeName:"fill",values:"#2d2d2d; #3c3c3c; #2d2d2d; #2d2d2d;",dur:"2s",repeatCount:"indefinite",calcMode:"spline",keyTimes:"0; 0.3; 0.6; 1",keySplines:"0.15 0.25 0.25 0.15; 0.15 0.25 0.25 0.15; 0 0 0 0"})),l&&React.createElement("path",{className:"",d:s.circleArc(r/2,i/2,c*.65)}));if(!v.data.length)return React.createElement(React.Fragment,null,React.createElement("svg",{"data-testid":"pie-empty-state",role:"img",viewBox:"0 0 3000 3000",height:"100%",width:"100%"},React.createElement("path",{d:"M 1500 1500 m 800, 1.9594348786357651e-13 a 800, 800 0 1,0 -1600, -3.9188697572715303e-13 a 800, 800 0 1,0 1600, 3.9188697572715303e-13",fill:`url(#${D})`,className:"[filter:invert(1)] dark:[filter:invert(0)]"}),React.createElement("linearGradient",{id:D,gradientTransform:"rotate(90)"},React.createElement("stop",{offset:"0%","stop-color":"#3c3c3c"}),React.createElement("stop",{offset:"100%","stop-color":"#3c3c3c","stop-opacity":"0.2"}))));let I=g.map((e,t,o)=>({...e,id:e.name??e.name,value:Number(e.value),stroke:e.stroke??N.colorFor(t,o.length),fill:typeof e.fill=="string"?e.fill:N.colorFor(t,o.length)})).sort((e,t)=>t.value-e.value).map((e,t,o)=>({...e,previousTotalDegrees:o.slice(0,t).map(({value:p})=>d.scale(p,b,360)).reduce((p,f)=>p+f,180),degrees:d.scale(e.value,b,360)})).map((e,t,o)=>{let p=s.polarToCartesian(r/2,i/2,c,e.previousTotalDegrees+e.degrees/(y?.75:2)+180),f=o.slice(0,t+1).map(a=>({name:a.name,position:s.polarToCartesian(r/2,i/2,c*1.2,a.previousTotalDegrees+a.degrees/(y?.75:2)+180)})).filter((a,P,C)=>{if(!C[P-1])return!1;let E=.15,{y:G,x:U}=a.position,{y:R,x:M}=C[P-1].position;return d.isBetween(R*(1-E),R*(1+E),G)&&d.isBetween(M*.7,M*1.3,U)}).map(a=>a.name).findIndex(a=>e.name===a),w=f>4,u=s.polarToCartesian(r/2,i/2,c*(1.2+.1*((w?f-4:f)+1)),e.previousTotalDegrees+e.degrees/(y?.75:2)+180),k=w||d.scale(u.x,r,100)>50,H=React.createElement("g",{className:"transform origin-center rotate-180 group",key:t},h&&React.createElement(React.Fragment,null,React.createElement("path",{className:"stroke-2 fill-transparent group-hover:stroke-[15] transform origin-center rotate-180",key:e.name,d:`M ${p.x} ${p.y} L ${u.x} ${u.y} ${k?"l 100 0":"l -100 0"}`,stroke:e.stroke}),React.createElement("g",{className:m("text-7xl font-bold pointer-events-auto transform origin-center rotate-180")},React.createElement("text",{"aria-label":`${e.name}-label`,y:u.y,x:u.x,stroke:e.stroke,fill:e.fill,dx:k?140:-140,style:{textAnchor:k?"start":"end"}},React.createElement("tspan",null,e.name.length>20?e.name.slice(0,20)+"...":e.name),React.createElement("tspan",{dx:25},+(Math.round(+((e.value/b*100).toFixed(1)+"e+2"))+"e-2"),"%")))),React.createElement("path",{className:"transition-all duration-200 ease-in-out scale-100 origin-center pointer-events-auto gorup-hover:drop-shadow-[0_0_50px_rgba(0,0,0,0.5)] hover:brightness-110 hover:scale-102",d:s.describeArc(r/2,i/2,c,e.previousTotalDegrees,e.previousTotalDegrees+e.degrees)+` L ${r/2} ${r/2} Z`,fill:e.fill,"data-degrees":e.degrees}));return{id:e.id,path:H}});return React.createElement(React.Fragment,null,l&&React.createElement($.div,{className:"absolute inset-0 flex items-center justify-center"},x),I.map(({path:e,id:t},o)=>React.createElement("svg",{key:o,viewBox:`0 0 ${r} ${i}`,role:"img",className:m("[grid-area:graph] pointer-events-none h-full w-full has-[path:hover]:z-[1] has-[path:hover]:[&_.label-path]:stroke-current",l&&"mask-radial [mask-position:50%_50%] [mask-repeat:no-repeat] [mask-image:radial-gradient(circle,transparent_14%,black_14.1%)]")},React.createElement("filter",{id:A+t,filterUnits:"userSpaceOnUse"},React.createElement("feDropShadow",{dx:"0",dy:"-150",stdDeviation:"100",floodColor:"#000000",floodOpacity:"0.4"}),React.createElement("feDropShadow",{dx:"0",dy:"200",stdDeviation:"100",floodColor:"#000000",floodOpacity:"0.5"})),React.createElement("use",{xlinkHref:`#${L+t}`,filter:"blur(150px)",opacity:.5,scale:.9}),React.createElement("g",{id:L+t},e),l&&React.createElement("path",{className:"",d:s.circleArc(r/2,i/2,c*.65)}))))};export{ee as PieGraph};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{a as n}from"../chunk-IPNLOTJZ.js";import{a as T}from"../chunk-JRRAKL7W.js";import{a as b}from"../chunk-DCUZK3HV.js";import{a as O}from"../chunk-27FBH32H.js";import{c as w}from"../chunk-LALBDKPZ.js";import r,{useId as v}from"react";var G=({})=>React.createElement("div",null,"placeholder");var H=.8,X=4,R=({scalars:p=[0,20,40,60,80,100],loading:k,className:M})=>{let x=w();if(!T.isSegmentData(x.data))return null;let{data:m,viewbox:t}=x,h=!k&&x.data.length==0,e=t.x/2*H,d=Math.max(...p),u=m.length,$=Array.from({length:u},(o,s)=>s*360/u),C=Array.from({length:p.length},(o,s)=>1-s*(1/(p.length-1))),N=C.toReversed(),f="white",c=360/u,D=d/(p.length-1),S=m.every(({value:o})=>!o);if(k)return r.createElement(G,null);let I=o=>{if(o===0)return X;if(o>=d)return d;let s=p.findIndex((y,a,Z)=>{let g=Z[a+1];return g!==o&&O.isBetween(o,y,g)||g===void 0}),i=[D*s,D*Math.min(p.length,s+1)];return O.scale(o,[p[s],p[s+1]||p[s]],i)},A=m.map(o=>({...o,scaled:S?0:I(+o.value)})),U=A.map(({scaled:o},s)=>n.polarToCartesian(t.x/2,t.y/2,o*e/d,s*c)).map(({x:o,y:s},i)=>i===0?`M ${o} ${s}`:`L ${o} ${s}`).join(" ").concat(" Z"),E=$.map(o=>{let{x:s,y:i}=n.polarToCartesian(t.x/2,t.y/2,e,o);return`M ${t.x/2} ${t.y/2} L ${s} ${i}`}).join(" "),L=C.map(o=>{let s=n.polarToCartesian(t.x/2,t.y/2,e*o,90).x,i=n.polarToCartesian(t.x/2,t.y/2,e,90).y;return`M ${s} ${i}
|
|
2
|
+
L ${s} ${i+t.y/100}`}).join(" "),j=C.slice(0,h?2:1/0).map(o=>n.circleArc(t.x/2,t.y/2,e*o)).join(" "),_=A.filter(({scaled:o})=>!!o).map(({scaled:o},s)=>{let{x:i,y}=n.polarToCartesian(t.x/2,t.y/2,o*e/d,s*c),a=t.x/100;return`M ${i-a} ${y} A ${a} ${a} 0 1 1 ${i+a} ${y} A ${a} ${a} 0 1 1 ${i-a} ${y} Z`}).join(" "),B=v(),P=v(),l="#11ACAE";return r.createElement("svg",{className:b("h-full w-full",M),viewBox:`0 0 ${t.x} ${t.y}`},r.createElement("defs",null,r.createElement("filter",{id:"radarPointGlow",filterUnits:"userSpaceOnUse"},r.createElement("feDropShadow",{dx:"0",dy:"0",stdDeviation:"20",floodColor:"white",floodOpacity:"1"})),r.createElement("radialGradient",{id:B},r.createElement("stop",{offset:"30%",stopColor:f,stopOpacity:.3}),r.createElement("stop",{offset:"50%",stopColor:f,stopOpacity:.2}),r.createElement("stop",{offset:"60%",stopColor:f,stopOpacity:.15}),r.createElement("stop",{offset:"70%",stopColor:f,stopOpacity:.08}),r.createElement("stop",{offset:"80%",stopColor:f,stopOpacity:.06}),r.createElement("stop",{offset:"100%",stopColor:f,stopOpacity:.03})),r.createElement("radialGradient",{id:P,cx:t.x/2,cy:t.y/2,gradientUnits:"userSpaceOnUse"},r.createElement("stop",{offset:"30%",stopColor:l}),r.createElement("stop",{offset:"50%",stopColor:l,stopOpacity:.7}),r.createElement("stop",{offset:"60%",stopColor:l,stopOpacity:.5}),r.createElement("stop",{offset:"70%",stopColor:l,stopOpacity:.4}),r.createElement("stop",{offset:"80%",stopColor:l,stopOpacity:.3}),r.createElement("stop",{offset:"100%",stopColor:l,stopOpacity:.2}))),r.createElement("path",{d:n.circleArc(t.x/2,t.y/2,e),fill:"#111111"}),r.createElement("path",{d:j,fillRule:"evenodd",fill:"#1b1b1b",className:"[vector-effect:non-scaling-stroke] stroke-1 stroke-[#2D2D2D]"}),h?r.createElement("text",{x:t.x/2,y:t.y/2},"NA"):r.createElement(r.Fragment,null,r.createElement("path",{d:E}),r.createElement("path",{d:L}),p.map((o,s)=>o===0?"0":s===p.length-1?`>${o}x`:`${o}x`).map((o,s)=>r.createElement("text",{key:s,x:n.polarToCartesian(t.x/2,t.y/2,e*N[s],90).x,y:n.polarToCartesian(t.x/2,t.y/2,e,90).y+135},o))),r.createElement("path",{d:_,strokeOpacity:"0",fillOpacity:.5,filter:"url(#radarPointGlow)"}),!h&&$.map((o,s)=>r.createElement("circle",{key:s,cx:n.polarToCartesian(t.x/2,t.y/2,e,o).x,cy:n.polarToCartesian(t.x/2,t.y/2,e,o).y,r:t.x/150,fill:"white"})),r.createElement("path",{stroke:l,d:U,fill:`url(#${P}`,className:"stroke-[10] [fill-opacity:0.7]"}),$.map((o,s)=>r.createElement("path",{key:s,className:"[vector-effect:non-scaling-stroke] dark:fill-white [fill-opacity:0] [stroke-opacity:0]",d:n.describeArc(t.x/2,t.y/2,e,o-c/2,o+c/2)+` L ${t.x/2} ${t.x/2} Z`})))};export{R as Radar};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as s}from"../chunk-I554ST6O.js";import{a as l}from"../chunk-YFBVZ3EG.js";import{a as p}from"../chunk-IPNLOTJZ.js";import{a as c}from"../chunk-JRRAKL7W.js";import"../chunk-27FBH32H.js";import{c as i}from"../chunk-LALBDKPZ.js";var w=({trendline:m})=>{let o=i(),{x:d,y:k}=o.viewbox;if(!c.isXYData(o.data))return null;let f=s.xCoordinateFor(o),h=s.yCoordinateFor(o),n=o.data.map((t,a,r)=>({id:t.name??t.id,...t,data:t.data.map(({x:e,y:u})=>({x:f(e),y:h(u)})),stroke:t.stroke??l.colorFor(a,r.length)}));return React.createElement("svg",{viewBox:`0 0 ${d} ${k}`,className:"[grid-area:graph] h-full w-full",preserveAspectRatio:"none"},n.map((t,a)=>React.createElement("path",{key:a,d:t.data.map(({x:r,y:e})=>`M ${r} ${e} A 0 0 0 0 1 ${r} ${e}`).join(" "),strokeWidth:10,stroke:t.stroke,strokeLinecap:"round",strokeLinejoin:"round",vectorEffect:"non-scaling-stroke"})),m&&React.createElement("path",{strokeWidth:3,strokeDasharray:"4,4",className:"stroke-black dark:stroke-white [vector-effect:non-scaling-stroke]",d:p.trend(n.flatMap(({data:t})=>t),o.viewbox)}))};export{w as Scatter};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as G}from"../chunk-YFBVZ3EG.js";import{a as p}from"../chunk-IPNLOTJZ.js";import{c as b}from"../chunk-LALBDKPZ.js";import s,{Fragment as y,useState as E}from"react";var D=[{name:"Other",value:50,children:[]},{name:"Amazon",value:30,children:[{name:"",value:20,children:[{name:"",value:10,children:[{name:"",value:5,children:[]},{name:"",value:2,children:[]},{name:"",value:2,children:[]},{name:"",value:1,children:[]}]},{name:"",value:10,children:[]}]},{name:"",value:5,children:[{name:"",value:2,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]}]},{name:"",value:5,children:[]}]},{name:"Disney",value:40,children:[{name:"Anime",value:20,children:[{name:"Spirited Away",value:20,children:[{name:"",value:2,children:[]},{name:"",value:2,children:[]},{name:"",value:2,children:[]},{name:"",value:2,children:[]},{name:"",value:2,children:[]},{name:"",value:2,children:[]},{name:"",value:2,children:[]},{name:"",value:2,children:[]},{name:"",value:2,children:[]},{name:"",value:2,children:[]}]}]},{name:"Action",value:20,children:[{name:"y",value:10,children:[{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]}]},{name:"x",value:10,children:[{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]},{name:"",value:1,children:[]}]}]}]},{name:"Netflix",value:30,children:[{name:"ABC",value:20,children:[]},{name:"",value:5,children:[]},{name:"",value:5,children:[]}]}],F=({})=>{let{viewbox:l}=b(),[d,t]=E(),v=D.toSorted((e,n)=>n.value-e.value),h=function e(n,a=1){let u=n.map(i=>i.children.length?a+e(i.children):a);return Math.max(...u)}(D),c=({ring:e,availableDegrees:n,startDegrees:a,previousTotal:u,color:i})=>(r,o,k)=>{let g=d===r,S=(()=>{if(g)return 360;let m=n*(r.value/u);return m===360?m:m-.5})(),f=g?0:a+n*(k.slice(0,o).reduce((m,{value:x})=>m+x,0)/u),A=i||G.colorFor(o);return d&&!g&&e===1?null:s.createElement(y,{key:o},s.createElement(N,{segment:r,degrees:S,previousDegrees:f,ring:e,stroke:A,onClick:()=>{r.children.length&&t(r)}}),r.children.map(c({ring:e+1,availableDegrees:S,startDegrees:f,previousTotal:r.value,color:A})))};return s.createElement("svg",{viewBox:`0 0 ${l.x} ${l.y}`,className:"h-full w-full"},v.map(c({ring:1,availableDegrees:360,startDegrees:0,previousTotal:v.reduce((e,{value:n})=>e+n,0)})),s.createElement("path",{d:p.circleArc(l.x/2,l.y/2,320),fill:"black",stroke:"black",onClick:()=>t(void 0)}))},N=({onClick:l,segment:d,previousDegrees:t,degrees:v,ring:h,stroke:c})=>{let{viewbox:e}=b(),n=300,a=20,u=t,i=t+v;return s.createElement("path",{d:p.annularArc(e.x/2,e.y/2,u,i,n*h+a,n*h+n),fill:c,stroke:c,onClick:l})};export{F as Sunburst};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._base_17xbr_2{border-radius:5px;position:absolute;width:auto}._inner_17xbr_8{display:inline-block;position:relative;z-index:20;color:#fff;min-width:48px;max-width:28rem;padding:8px}._inner--center-top_17xbr_17{-webkit-mask-image:radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),url('data:image/svg+xml;utf8,<svg width="20px" height="10px" viewBox="0 0 60 30" xmlns="http://www.w3.org/2000/svg"><path d="M 0 30 L 30 0 L 60 30 Z" /></svg>');-webkit-mask-repeat:no-repeat;-webkit-mask-position:0 10px,100% 10px,0 100%,100% 100%,0 15px,5px 10px,50% 0;-webkit-mask-size:10px 10px,10px 10px,10px 10px,10px 10px,100% calc(100% - 20px),calc(100% - 10px) 100%,20px 10px}._inner--left-top_17xbr_25{-webkit-mask-image:radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),url('data:image/svg+xml;utf8,<svg width="20px" height="10px" viewBox="0 0 60 30" xmlns="http://www.w3.org/2000/svg"><path d="M 0 30 L 30 0 L 60 30 Z" /></svg>');-webkit-mask-repeat:no-repeat;-webkit-mask-position:0 10px,100% 10px,0 100%,100% 100%,0 15px,5px 10px,calc(10% - 10px) 0;-webkit-mask-size:10px 10px,10px 10px,10px 10px,10px 10px,100% calc(100% - 20px),calc(100% - 10px) 100%,20px 10px}._inner--right-top_17xbr_33{-webkit-mask-image:radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),url('data:image/svg+xml;utf8,<svg width="20px" height="10px" viewBox="0 0 60 30" xmlns="http://www.w3.org/2000/svg"><path d="M 0 30 L 30 0 L 60 30 Z" /></svg>');-webkit-mask-repeat:no-repeat;-webkit-mask-position:0 10px,100% 10px,0 100%,100% 100%,0 15px,5px 10px,calc(90% + 10px) 0;-webkit-mask-size:10px 10px,10px 10px,10px 10px,10px 10px,100% calc(100% - 20px),calc(100% - 10px) 100%,20px 10px}._inner--left-middle_17xbr_41{-webkit-mask-image:radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),url('data:image/svg+xml;utf8,<svg width="10px" height="20px" viewBox="0 0 30 60" xmlns="http://www.w3.org/2000/svg"><path d="M 30 0 L 30 60 L 0 30 Z" /></svg>');-webkit-mask-repeat:no-repeat;-webkit-mask-position:10px 0,100% 0,10px 100%,100% 100%,10px 5px,15px 0,0 50%;-webkit-mask-size:10px 10px,10px 10px,10px 10px,10px 10px,100% calc(100% - 10px),calc(100% - 20px) 100%,10px 20px}._inner--left-bottom_17xbr_49{-webkit-mask-image:radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),url('data:image/svg+xml;utf8,<svg width="20px" height="10px" viewBox="0 0 60 30" xmlns="http://www.w3.org/2000/svg"><path d="M 0 0 L 60 0 L 30 30 Z"/></svg>');-webkit-mask-repeat:no-repeat;-webkit-mask-position:0 0,100% 0,0 calc(100% - 10px),100% calc(100% - 10px),0 5px,5px 0,calc(10% - 10px) 100%;-webkit-mask-size:10px 10px,10px 10px,10px 10px,10px 10px,100% calc(100% - 20px),calc(100% - 10px) calc(100% - 10px),20px 10px}._inner--right-bottom_17xbr_57{-webkit-mask-image:radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),url('data:image/svg+xml;utf8,<svg width="20px" height="10px" viewBox="0 0 60 30" xmlns="http://www.w3.org/2000/svg"><path d="M 0 0 L 60 0 L 30 30 Z"/></svg>');-webkit-mask-repeat:no-repeat;-webkit-mask-position:0 0,100% 0,0 calc(100% - 10px),100% calc(100% - 10px),0 5px,5px 0,calc(90% + 10px) 100%;-webkit-mask-size:10px 10px,10px 10px,10px 10px,10px 10px,100% calc(100% - 20px),calc(100% - 10px) calc(100% - 10px),20px 10px}._inner--bottom-center_17xbr_65{-webkit-mask-image:radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),url('data:image/svg+xml;utf8,<svg width="20px" height="10px" viewBox="0 0 60 30" xmlns="http://www.w3.org/2000/svg"><path d="M 0 0 L 60 0 L 30 30 Z"/></svg>');-webkit-mask-repeat:no-repeat;-webkit-mask-position:0 0,100% 0,100% calc(100% - 9px),0 calc(100% - 9px),0 5px,5px 0,50% 100%;-webkit-mask-size:10px 10px,10px 10px,10px 10px,10px 10px,100% calc(100% - 20px),calc(100% - 10px) calc(100% - 9px),20px 10px}._inner--right-middle_17xbr_73{-webkit-mask-image:radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),radial-gradient(#fff 4.5px,rgba(255,255,255,0) 5px),linear-gradient(#fff,#fff),linear-gradient(#fff,#fff),url('data:image/svg+xml;utf8,<svg width="10px" height="20px" viewBox="0 0 30 60" xmlns="http://www.w3.org/2000/svg"><path d="M 0 0 L 0 60 L 30 30 Z" /></svg>');-webkit-mask-repeat:no-repeat;-webkit-mask-position:0 0,calc(100% - 10px) 0,0 100%,calc(100% - 10px) 100%,0 5px,5px 0,100% 50%;-webkit-mask-size:10px 10px,10px 10px,10px 10px,10px 10px,calc(100% - 10px) calc(100% - 10px),calc(100% - 20px) 100%,10px 20px}._inner--top_17xbr_81{padding-top:18px}._inner--bottom_17xbr_65{padding-bottom:18px}._inner--left_17xbr_25{padding-left:18px}._inner--right_17xbr_33{padding-right:18px}._title_17xbr_94{font-size:.875rem;font-weight:700;line-height:1.125rem;color:#c3c3c3;text-transform:uppercase;margin-bottom:12px}._description_17xbr_103{color:#fff;font-size:.875rem;font-weight:400;line-height:1.25rem}._triangle_17xbr_110{display:none;position:absolute;height:10px;width:20px;stroke-width:5;fill:transparent}._triangle--top-left_17xbr_118{top:0;left:10%;transform:translate(calc(-50% - 2px))}._triangle--top-right_17xbr_123{top:0;left:90%;transform:translate(calc(-50% + 2px))}._triangle--top-center_17xbr_128{top:0;left:50%;stroke-width:3;transform:translate(-50%)}._triangle--bottom-left_17xbr_134{top:100%;left:10%;transform:translate(calc(-50% - 2px),-100%)}._triangle--bottom-right_17xbr_139{top:100%;left:90%;transform:translate(calc(-50% + 2px),-100%)}._triangle--bottom-center_17xbr_144{top:100%;left:50%;stroke-width:2;transform:translate(-50%,-100%) scale(.9)}._tooltip_1bizk_1{display:none}._base_1bizk_6:has(svg path[data-iso=GF]:hover)>._tooltip_1bizk_1[data-iso=GF]{display:block}._base_1bizk_6:has(svg path[data-iso=MT]:hover)>._tooltip_1bizk_1[data-iso=MT]{display:block}._base_1bizk_6:has(svg path[data-iso="??"]:hover)>._tooltip_1bizk_1[data-iso="??"]{display:block}._base_1bizk_6:has(svg path[data-iso="???"]:hover)>._tooltip_1bizk_1[data-iso="???"]{display:block}._base_1bizk_6:has(svg path[data-iso=BN]:hover)>._tooltip_1bizk_1[data-iso=BN]{display:block}._base_1bizk_6:has(svg path[data-iso=PR]:hover)>._tooltip_1bizk_1[data-iso=PR]{display:block}._base_1bizk_6:has(svg path[data-iso=LU]:hover)>._tooltip_1bizk_1[data-iso=LU]{display:block}._base_1bizk_6:has(svg path[data-iso=BW]:hover)>._tooltip_1bizk_1[data-iso=BW]{display:block}._base_1bizk_6:has(svg path[data-iso=CF]:hover)>._tooltip_1bizk_1[data-iso=CF]{display:block}._base_1bizk_6:has(svg path[data-iso=DE]:hover)>._tooltip_1bizk_1[data-iso=DE]{display:block}._base_1bizk_6:has(svg path[data-iso=YE]:hover)>._tooltip_1bizk_1[data-iso=YE]{display:block}._base_1bizk_6:has(svg path[data-iso=OM]:hover)>._tooltip_1bizk_1[data-iso=OM]{display:block}._base_1bizk_6:has(svg path[data-iso=CG]:hover)>._tooltip_1bizk_1[data-iso=CG]{display:block}._base_1bizk_6:has(svg path[data-iso=PL]:hover)>._tooltip_1bizk_1[data-iso=PL]{display:block}._base_1bizk_6:has(svg path[data-iso=EH]:hover)>._tooltip_1bizk_1[data-iso=EH]{display:block}._base_1bizk_6:has(svg path[data-iso=GR]:hover)>._tooltip_1bizk_1[data-iso=GR]{display:block}._base_1bizk_6:has(svg path[data-iso=KG]:hover)>._tooltip_1bizk_1[data-iso=KG]{display:block}._base_1bizk_6:has(svg path[data-iso=RO]:hover)>._tooltip_1bizk_1[data-iso=RO]{display:block}._base_1bizk_6:has(svg path[data-iso=GN]:hover)>._tooltip_1bizk_1[data-iso=GN]{display:block}._base_1bizk_6:has(svg path[data-iso=GY]:hover)>._tooltip_1bizk_1[data-iso=GY]{display:block}._base_1bizk_6:has(svg path[data-iso=IS]:hover)>._tooltip_1bizk_1[data-iso=IS]{display:block}._base_1bizk_6:has(svg path[data-iso=SY]:hover)>._tooltip_1bizk_1[data-iso=SY]{display:block}._base_1bizk_6:has(svg path[data-iso=TN]:hover)>._tooltip_1bizk_1[data-iso=TN]{display:block}._base_1bizk_6:has(svg path[data-iso=GH]:hover)>._tooltip_1bizk_1[data-iso=GH]{display:block}._base_1bizk_6:has(svg path[data-iso=UY]:hover)>._tooltip_1bizk_1[data-iso=UY]{display:block}._base_1bizk_6:has(svg path[data-iso=BD]:hover)>._tooltip_1bizk_1[data-iso=BD]{display:block}._base_1bizk_6:has(svg path[data-iso=SN]:hover)>._tooltip_1bizk_1[data-iso=SN]{display:block}._base_1bizk_6:has(svg path[data-iso=HR]:hover)>._tooltip_1bizk_1[data-iso=HR]{display:block}._base_1bizk_6:has(svg path[data-iso=AT]:hover)>._tooltip_1bizk_1[data-iso=AT]{display:block}._base_1bizk_6:has(svg path[data-iso=NI]:hover)>._tooltip_1bizk_1[data-iso=NI]{display:block}._base_1bizk_6:has(svg path[data-iso=HU]:hover)>._tooltip_1bizk_1[data-iso=HU]{display:block}._base_1bizk_6:has(svg path[data-iso=HN]:hover)>._tooltip_1bizk_1[data-iso=HN]{display:block}._base_1bizk_6:has(svg path[data-iso=BG]:hover)>._tooltip_1bizk_1[data-iso=BG]{display:block}._base_1bizk_6:has(svg path[data-iso=JO]:hover)>._tooltip_1bizk_1[data-iso=JO]{display:block}._base_1bizk_6:has(svg path[data-iso=AZ]:hover)>._tooltip_1bizk_1[data-iso=AZ]{display:block}._base_1bizk_6:has(svg path[data-iso=LV]:hover)>._tooltip_1bizk_1[data-iso=LV]{display:block}._base_1bizk_6:has(svg path[data-iso=SR]:hover)>._tooltip_1bizk_1[data-iso=SR]{display:block}._base_1bizk_6:has(svg path[data-iso=PT]:hover)>._tooltip_1bizk_1[data-iso=PT]{display:block}._base_1bizk_6:has(svg path[data-iso=AE]:hover)>._tooltip_1bizk_1[data-iso=AE]{display:block}._base_1bizk_6:has(svg path[data-iso=IE]:hover)>._tooltip_1bizk_1[data-iso=IE]{display:block}._base_1bizk_6:has(svg path[data-iso=GT]:hover)>._tooltip_1bizk_1[data-iso=GT]{display:block}._base_1bizk_6:has(svg path[data-iso=RS]:hover)>._tooltip_1bizk_1[data-iso=RS]{display:block}._base_1bizk_6:has(svg path[data-iso=CZ]:hover)>._tooltip_1bizk_1[data-iso=CZ]{display:block}._base_1bizk_6:has(svg path[data-iso=KR]:hover)>._tooltip_1bizk_1[data-iso=KR]{display:block}._base_1bizk_6:has(svg path[data-iso=PA]:hover)>._tooltip_1bizk_1[data-iso=PA]{display:block}._base_1bizk_6:has(svg path[data-iso=LT]:hover)>._tooltip_1bizk_1[data-iso=LT]{display:block}._base_1bizk_6:has(svg path[data-iso=EE]:hover)>._tooltip_1bizk_1[data-iso=EE]{display:block}._base_1bizk_6:has(svg path[data-iso=DK]:hover)>._tooltip_1bizk_1[data-iso=DK]{display:block}._base_1bizk_6:has(svg path[data-iso=NL]:hover)>._tooltip_1bizk_1[data-iso=NL]{display:block}._base_1bizk_6:has(svg path[data-iso=SK]:hover)>._tooltip_1bizk_1[data-iso=SK]{display:block}._base_1bizk_6:has(svg path[data-iso=CR]:hover)>._tooltip_1bizk_1[data-iso=CR]{display:block}._base_1bizk_6:has(svg path[data-iso=BA]:hover)>._tooltip_1bizk_1[data-iso=BA]{display:block}._base_1bizk_6:has(svg path[data-iso=MD]:hover)>._tooltip_1bizk_1[data-iso=MD]{display:block}._base_1bizk_6:has(svg path[data-iso=CH]:hover)>._tooltip_1bizk_1[data-iso=CH]{display:block}._base_1bizk_6:has(svg path[data-iso=TG]:hover)>._tooltip_1bizk_1[data-iso=TG]{display:block}._base_1bizk_6:has(svg path[data-iso=LK]:hover)>._tooltip_1bizk_1[data-iso=LK]{display:block}._base_1bizk_6:has(svg path[data-iso=DO]:hover)>._tooltip_1bizk_1[data-iso=DO]{display:block}._base_1bizk_6:has(svg path[data-iso=BE]:hover)>._tooltip_1bizk_1[data-iso=BE]{display:block}._base_1bizk_6:has(svg path[data-iso=IL]:hover)>._tooltip_1bizk_1[data-iso=IL]{display:block}._base_1bizk_6:has(svg path[data-iso=FJ]:hover)>._tooltip_1bizk_1[data-iso=FJ]{display:block}._base_1bizk_6:has(svg path[data-iso=TW]:hover)>._tooltip_1bizk_1[data-iso=TW]{display:block}._base_1bizk_6:has(svg path[data-iso=HT]:hover)>._tooltip_1bizk_1[data-iso=HT]{display:block}._base_1bizk_6:has(svg path[data-iso=AL]:hover)>._tooltip_1bizk_1[data-iso=AL]{display:block}._base_1bizk_6:has(svg path[data-iso=LS]:hover)>._tooltip_1bizk_1[data-iso=LS]{display:block}._base_1bizk_6:has(svg path[data-iso=SI]:hover)>._tooltip_1bizk_1[data-iso=SI]{display:block}._base_1bizk_6:has(svg path[data-iso=BI]:hover)>._tooltip_1bizk_1[data-iso=BI]{display:block}._base_1bizk_6:has(svg path[data-iso=MK]:hover)>._tooltip_1bizk_1[data-iso=MK]{display:block}._base_1bizk_6:has(svg path[data-iso=ME]:hover)>._tooltip_1bizk_1[data-iso=ME]{display:block}._base_1bizk_6:has(svg path[data-iso=KW]:hover)>._tooltip_1bizk_1[data-iso=KW]{display:block}._base_1bizk_6:has(svg path[data-iso=GQ]:hover)>._tooltip_1bizk_1[data-iso=GQ]{display:block}._base_1bizk_6:has(svg path[data-iso=LB]:hover)>._tooltip_1bizk_1[data-iso=LB]{display:block}._base_1bizk_6:has(svg path[data-iso=CY]:hover)>._tooltip_1bizk_1[data-iso=CY]{display:block}._base_1bizk_6:has(svg path[data-iso=QA]:hover)>._tooltip_1bizk_1[data-iso=QA]{display:block}._base_1bizk_6:has(svg path[data-iso=JM]:hover)>._tooltip_1bizk_1[data-iso=JM]{display:block}._base_1bizk_6:has(svg path[data-iso=GM]:hover)>._tooltip_1bizk_1[data-iso=GM]{display:block}._base_1bizk_6:has(svg path[data-iso=RU]:hover)>._tooltip_1bizk_1[data-iso=RU]{display:block}._base_1bizk_6:has(svg path[data-iso=US]:hover)>._tooltip_1bizk_1[data-iso=US]{display:block}._base_1bizk_6:has(svg path[data-iso=CA]:hover)>._tooltip_1bizk_1[data-iso=CA]{display:block}._base_1bizk_6:has(svg path[data-iso=CN]:hover)>._tooltip_1bizk_1[data-iso=CN]{display:block}._base_1bizk_6:has(svg path[data-iso=BR]:hover)>._tooltip_1bizk_1[data-iso=BR]{display:block}._base_1bizk_6:has(svg path[data-iso=GL]:hover)>._tooltip_1bizk_1[data-iso=GL]{display:block}._base_1bizk_6:has(svg path[data-iso=AU]:hover)>._tooltip_1bizk_1[data-iso=AU]{display:block}._base_1bizk_6:has(svg path[data-iso=IN]:hover)>._tooltip_1bizk_1[data-iso=IN]{display:block}._base_1bizk_6:has(svg path[data-iso=ID]:hover)>._tooltip_1bizk_1[data-iso=ID]{display:block}._base_1bizk_6:has(svg path[data-iso=AR]:hover)>._tooltip_1bizk_1[data-iso=AR]{display:block}._base_1bizk_6:has(svg path[data-iso=KZ]:hover)>._tooltip_1bizk_1[data-iso=KZ]{display:block}._base_1bizk_6:has(svg path[data-iso=MX]:hover)>._tooltip_1bizk_1[data-iso=MX]{display:block}._base_1bizk_6:has(svg path[data-iso=DZ]:hover)>._tooltip_1bizk_1[data-iso=DZ]{display:block}._base_1bizk_6:has(svg path[data-iso=CD]:hover)>._tooltip_1bizk_1[data-iso=CD]{display:block}._base_1bizk_6:has(svg path[data-iso=NO]:hover)>._tooltip_1bizk_1[data-iso=NO]{display:block}._base_1bizk_6:has(svg path[data-iso=MN]:hover)>._tooltip_1bizk_1[data-iso=MN]{display:block}._base_1bizk_6:has(svg path[data-iso=SA]:hover)>._tooltip_1bizk_1[data-iso=SA]{display:block}._base_1bizk_6:has(svg path[data-iso=CL]:hover)>._tooltip_1bizk_1[data-iso=CL]{display:block}._base_1bizk_6:has(svg path[data-iso=ES]:hover)>._tooltip_1bizk_1[data-iso=ES]{display:block}._base_1bizk_6:has(svg path[data-iso=IR]:hover)>._tooltip_1bizk_1[data-iso=IR]{display:block}._base_1bizk_6:has(svg path[data-iso=ML]:hover)>._tooltip_1bizk_1[data-iso=ML]{display:block}._base_1bizk_6:has(svg path[data-iso=PE]:hover)>._tooltip_1bizk_1[data-iso=PE]{display:block}._base_1bizk_6:has(svg path[data-iso=JP]:hover)>._tooltip_1bizk_1[data-iso=JP]{display:block}._base_1bizk_6:has(svg path[data-iso=PK]:hover)>._tooltip_1bizk_1[data-iso=PK]{display:block}._base_1bizk_6:has(svg path[data-iso=SD]:hover)>._tooltip_1bizk_1[data-iso=SD]{display:block}._base_1bizk_6:has(svg path[data-iso=LY]:hover)>._tooltip_1bizk_1[data-iso=LY]{display:block}._base_1bizk_6:has(svg path[data-iso=ZA]:hover)>._tooltip_1bizk_1[data-iso=ZA]{display:block}._base_1bizk_6:has(svg path[data-iso=CO]:hover)>._tooltip_1bizk_1[data-iso=CO]{display:block}._base_1bizk_6:has(svg path[data-iso=NE]:hover)>._tooltip_1bizk_1[data-iso=NE]{display:block}._base_1bizk_6:has(svg path[data-iso=SE]:hover)>._tooltip_1bizk_1[data-iso=SE]{display:block}._base_1bizk_6:has(svg path[data-iso=MM]:hover)>._tooltip_1bizk_1[data-iso=MM]{display:block}._base_1bizk_6:has(svg path[data-iso=BO]:hover)>._tooltip_1bizk_1[data-iso=BO]{display:block}._base_1bizk_6:has(svg path[data-iso=VE]:hover)>._tooltip_1bizk_1[data-iso=VE]{display:block}._base_1bizk_6:has(svg path[data-iso=MR]:hover)>._tooltip_1bizk_1[data-iso=MR]{display:block}._base_1bizk_6:has(svg path[data-iso=UA]:hover)>._tooltip_1bizk_1[data-iso=UA]{display:block}._base_1bizk_6:has(svg path[data-iso=SO]:hover)>._tooltip_1bizk_1[data-iso=SO]{display:block}._base_1bizk_6:has(svg path[data-iso=FR]:hover)>._tooltip_1bizk_1[data-iso=FR]{display:block}._base_1bizk_6:has(svg path[data-iso=NZ]:hover)>._tooltip_1bizk_1[data-iso=NZ]{display:block}._base_1bizk_6:has(svg path[data-iso=AF]:hover)>._tooltip_1bizk_1[data-iso=AF]{display:block}._base_1bizk_6:has(svg path[data-iso=IT]:hover)>._tooltip_1bizk_1[data-iso=IT]{display:block}._base_1bizk_6:has(svg path[data-iso=PG]:hover)>._tooltip_1bizk_1[data-iso=PG]{display:block}._base_1bizk_6:has(svg path[data-iso=PH]:hover)>._tooltip_1bizk_1[data-iso=PH]{display:block}._base_1bizk_6:has(svg path[data-iso=TZ]:hover)>._tooltip_1bizk_1[data-iso=TZ]{display:block}._base_1bizk_6:has(svg path[data-iso=TH]:hover)>._tooltip_1bizk_1[data-iso=TH]{display:block}._base_1bizk_6:has(svg path[data-iso=EG]:hover)>._tooltip_1bizk_1[data-iso=EG]{display:block}._base_1bizk_6:has(svg path[data-iso=TR]:hover)>._tooltip_1bizk_1[data-iso=TR]{display:block}._base_1bizk_6:has(svg path[data-iso=NG]:hover)>._tooltip_1bizk_1[data-iso=NG]{display:block}._base_1bizk_6:has(svg path[data-iso=ZM]:hover)>._tooltip_1bizk_1[data-iso=ZM]{display:block}._base_1bizk_6:has(svg path[data-iso=MY]:hover)>._tooltip_1bizk_1[data-iso=MY]{display:block}._base_1bizk_6:has(svg path[data-iso=FI]:hover)>._tooltip_1bizk_1[data-iso=FI]{display:block}._base_1bizk_6:has(svg path[data-iso=VN]:hover)>._tooltip_1bizk_1[data-iso=VN]{display:block}._base_1bizk_6:has(svg path[data-iso=TM]:hover)>._tooltip_1bizk_1[data-iso=TM]{display:block}._base_1bizk_6:has(svg path[data-iso=EC]:hover)>._tooltip_1bizk_1[data-iso=EC]{display:block}._base_1bizk_6:has(svg path[data-iso=MA]:hover)>._tooltip_1bizk_1[data-iso=MA]{display:block}._base_1bizk_6:has(svg path[data-iso=MG]:hover)>._tooltip_1bizk_1[data-iso=MG]{display:block}._base_1bizk_6:has(svg path[data-iso=KE]:hover)>._tooltip_1bizk_1[data-iso=KE]{display:block}._base_1bizk_6:has(svg path[data-iso=IQ]:hover)>._tooltip_1bizk_1[data-iso=IQ]{display:block}._base_1bizk_6:has(svg path[data-iso=PY]:hover)>._tooltip_1bizk_1[data-iso=PY]{display:block}._base_1bizk_6:has(svg path[data-iso=GB]:hover)>._tooltip_1bizk_1[data-iso=GB]{display:block}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as f}from"../chunk-IPNLOTJZ.js";import{a as s}from"../chunk-DCUZK3HV.js";import{a as m}from"../chunk-27FBH32H.js";import{c as Z}from"../chunk-LALBDKPZ.js";import p,{useId as x}from"react";var h={base:"_base_17xbr_2",inner:"_inner_17xbr_8","inner--center-top":"_inner--center-top_17xbr_17","inner--left-top":"_inner--left-top_17xbr_25","inner--right-top":"_inner--right-top_17xbr_33","inner--left-middle":"_inner--left-middle_17xbr_41","inner--left-bottom":"_inner--left-bottom_17xbr_49","inner--right-bottom":"_inner--right-bottom_17xbr_57","inner--bottom-center":"_inner--bottom-center_17xbr_65","inner--right-middle":"_inner--right-middle_17xbr_73","inner--top":"_inner--top_17xbr_81","inner--bottom":"_inner--bottom_17xbr_65","inner--left":"_inner--left_17xbr_25","inner--right":"_inner--right_17xbr_33",title:"_title_17xbr_94",description:"_description_17xbr_103",triangle:"_triangle_17xbr_110","triangle--top-left":"_triangle--top-left_17xbr_118","triangle--top-right":"_triangle--top-right_17xbr_123","triangle--top-center":"_triangle--top-center_17xbr_128","triangle--bottom-left":"_triangle--bottom-left_17xbr_134","triangle--bottom-right":"_triangle--bottom-right_17xbr_139","triangle--bottom-center":"_triangle--bottom-center_17xbr_144"};import*as t from"react";var c=({ref:i,target:{side:l,alignment:v},border:r,children:d,...o})=>{let a=(()=>{if(v==="left")return"translate(-10%, 0)";if(v==="right")return"translate(10%, 0)";if(v==="top")return"translate(0, -10%)";if(v==="bottom")return"translate(0, 10%)"})(),_=(()=>{if(l==="top"&&v==="center")return h.innerTopCenter;if(l==="top"&&v==="left")return h.innerTopLeft;if(l==="top"&&v==="right")return h.innerTopRight;if(l==="bottom"&&v==="center")return h.innerBottomCenter;if(l==="bottom"&&v==="left")return h.innerBottomLeft;if(l==="bottom"&&v==="right")return h.innerBottomRight;if(l==="left"&&v==="center")return h.innerLeftCenter;if(l==="left"&&v==="top")return h.innerLeftTop;if(l==="left"&&v==="bottom")return h.innerLeftBottom;if(l==="right"&&v==="center")return h.innerRightCenter;if(l==="right"&&v==="top")return h.innerRightTop;if(l==="right"&&v==="bottom")return h.innerRightBottom})(),e=(()=>{let k={lefttop:t.createElement("path",{d:"M 30 0 L 60 30"}),righttop:t.createElement("path",{d:"M 0 30 L 30 0"}),centertop:t.createElement("path",{d:"M 0 30 L 30 0 L 60 30"}),leftbottom:t.createElement("path",{d:"M 30 30 L 60 0"}),rightbottom:t.createElement("path",{d:"M 0 0 L 30 30"}),centerbottom:t.createElement("path",{d:"M 0 0 L 30 30 L 60 0"})};return t.createElement("svg",{viewBox:"0 0 60 30",stroke:r,className:s(h.triangle,{[h.triangleBottom]:l==="bottom",[h.triangleTopLeft]:v==="left"&&l==="top",[h.triangleTopRight]:v==="right"&&l==="top",[h.triangleTopCenter]:v==="center"&&l==="top",[h.triangleBottomLeft]:v==="left"&&l==="bottom",[h.triangleBottomRight]:v==="right"&&l==="bottom",[h.triangleBottomCenter]:v==="center"&&l==="bottom"})},k[`${v}${l}`])})(),b=(()=>{if(l==="top")return h.innerTop;if(l==="bottom")return h.innerBottom;if(l==="right")return h.innerRight;if(l==="left")return h.innerLeft;if(v==="left"&&l==="center")return h.innerLeftMiddle;if(v==="right"&&l==="center")return h.innerRightMiddle})();return t.createElement("div",{ref:i,...o,style:{pointerEvents:"none",transform:a,...o.style,border:`1px solid ${r}`},className:s(h.base,_,o.className)},t.createElement("div",{className:s(h.inner,b,_)},d,e))};var n={GF:"m389 341-1 1-3 4h-3l-1 1-1-1 1-1v-1l1-2-2-1v-3l1-1 1-1h1l2 1 2 1 1 1Z",MT:"m589.1 239.66-.39.1-.25-.17.29-.3Z","??":"M1050 398v1h1v1l-1 1v-1l-1-2Zm2 4 1 1-1 1ZM367 524l1 1 1-1 1 1-3 1-1 1-1-1 1-1Zm-5 0h4l-2 2Z","???":"m924 382-1-2 1-1h4l1 1h-1l-3 1ZM642 433v5h-2l-1-1-1-1v-1l1-2h1ZM610 217h-1l-2 1v-1l-1-1 1-1 2-1 1 1h1ZM649 255v-1Zm3 0-1-1v-2l1-1h1v3Z",BN:"m893 338-1 1 1 1-1 1-2-2h1l2-1h1Z",PR:"M345 297h1l-1 1h-3v-2Z",LU:"m564 187 1 1-1 2-1-1-1-1Z",BW:"m695 391 1 2 1 3v2l1 2-1 2-1-2-1 1 1 2-1 3v2l-3 8-1 3-1 3-1 5-1 3-2 1h-1l-2 1h-1l-1-1h-2l-1-1-1-2v-2l-1-2v-3l1-2 1-1 1-4 1-1-1-1v-2l-1-1v-3l1-2 1-1 1-1h2v-1h2l1-1 4-3v-1l3-3v-2l1-1ZM648 324v3l-2 1-1 1 1 1h1l1 1 2 2 1 3h1l-4 4-2 2h-8l-1-1h-1l-1-2-2 1-1-1-2 1-1-1-1-1-1-2-2-1v-2l-2-1-1-1-1-1-1-2h-1l-1-1 1-1 1-3 1-1 2-1v1l2 2h4l1 1h2l1-1 1-1 1-1h1l2 1h2l1-1 1-1 1-2v-2h-1 2l2-1-1 2v2l3 2ZM592 330l-1 1-1 3-1 1 1 4v1l1 1 2 3h1v4l-1-1h-8v-1h-10v-3l-1-2h-2v-1l-1-1 1-2v-2l4-3h1l1 1 1 1 1-1 1-2v-1l2-3 1-1v-2h1v-1l1-2 1-2 2-1v-2l-1-1v-2l1 1 1 1 1 2v4l1 2h-4l-1 1 1 1 3 2 1 2ZM621 407v1l2 2 1 3 2 1 1 1 1 1h1v2l1 1 3 1 1 1-2 1-2 1-1 1-2 2-1 2-1 1-2 1-1 2-2 1-3-1-2-1-1 1v2l-2 1-1 1h-3l-1-1 1-2-1-3h-2v-9h3l1-4v-8l7-1v2l3-2Z",CF:"m645 382 1 1 1 2-1 1v5h-1v2l-1 2 1 1h1l-5 1-4 2v2h-2l-2 1-1 2-2 1-3 3h-4l-2-1h-5l-4-3v-11h5l1-2v-5l1 1v1l2-1 1 1 2 1h3v-1l1 2 3 1 2 3 1-1 1 1v-4l-1 1h-1l-2-2v-1l1-3v-2l-1-2 2-2 5-1 1 1h1l2 2h1ZM614 320l1 1 2 2-1 3 2 1 1 1h1l1 2 1 1 1 1 2 1v2l2 1 1 2-1-1-1 1-4-1-1 1h-2l-3 1h-2l-1 2-3-1h-3l-1-2h-3l-2 2v3l-1-1h-5v2l-1 2v-2h-1l-2-3-1-1v-1l-1-4 1-1 1-3 1-1h4l2-1h3l2-2v-1l4-1 1-1 1-1 2-1v-1l2-1Z",DE:"m574 168 2 2 4 2 2-1 1-2 1 1 3 2 1 1 1 1-1 2 1 1 1 2-1 1 1 3v1h-1l-6 2-1 1 1 3 4 2-1 2-2 1-1 2h-3l-1 1-2-1-1 1-2-1-3-1-3 1v-2l2-3-2-1h-3l-1-1 1-2-1-1v-1l-1-1v-1l1-2-1-1 2-1 1-2 1-4v-1h4l1-1v-3l-1-1Z",YE:"m706 302-3 1v2l-2 1-3 1-1 1h-3l-2 2h-2l-1 1-2 1h-4l-2 2h-1l-2 1-1-1-1-1v-1l-1-2v-1l-1-4 1-2 1-1v-3l2 1h8l1 1h2v-1l2-3 2-1 9-1 3 5Z",OM:"M716 276v1l2 2 4 1 4 5-1 2-2 1-1 2-2 1v4h-2l-1 1-1 1-1 1h-2l-1 3h-3l-2 1h-1l-1-2-3-5 5-2 4-1 2-7-1-2v-1l2-4v-2l1 1Z",CG:"M601 343v1l-1 3v1l-1 2v5l-2 1-1 1-1 2-1 1v4l-1 1h-1l-2 3h-1l-1-2-2 2-1-1h-3l-1 1v-1l-2-2 1-1 1-1-1-1v-2h3v-1h1v1h3l1 1 1-2v-4l-2-1v-2l1-1h1l-1-2h-3v-2h8l1 1v-2l1-2v-2h5ZM854 284l3 3-1 1 1 1h3l2 1v1l1 1-1 1h-2v1l2 1 1 1v1h1l1 2 2 2 1 2 2 1v1l1 2v1l-3 1h-2v2l-3-2h1v-3l1-1-1-1h-1l-1-2v-2l-2-3h-2l-1 1h-1l-2-1-3 3v-3l1-2-1-2h-1l-1-1v-1h-1l1-2 1-1 1-1v1h2v-2l-1-1 1-1ZM608 33l5-1 13 2 1 2-4 3-5 2-10-2-6-2-1-2Zm-12 3 5 2 2 3h4l3 3-5 1-4 3-5 10-8-4 2-3-4-3-5-4-3-7h6l2 2 7-2Zm14 9 5 4h3l-1 3h-5l-2-3-4-4Z",PL:"M604 170h10l2 1v1l1 3v2l-2 2h2l-1 3 2 2-1 2-3 3-1 2-2-1h-4l-2 1-1-2-2 1-1-2h-2l-2-2-1 1-3-2-3-1v-1l-1-3 1-1-1-2-1-1 1-2-1-1v-1l6-2 1-1 2-1h3l2 2Z",EH:"M519 267v6h-10v8h-2l-1 1-1 2 1 3h-12l-1 2 1-3 1-2 1-2 2-3 1-2 1-1v-2l1-2 3-2 1-3ZM640 422h-3l-2-1h-1l-1-1-3-1-1-1v-2h-1l-1-1-1-1-2-1-1-3-2-2v-1l2 1h4l3-3 2-1 1-2 2-1h2v1h3l2 1h1l2 1v5l-1 2 1 3-2 3v2ZM630 162l2 1h2v1h3l2 1v4l1 2h1l3 3-2 1h-2l1 3v1h-2l-2 2-3 1-1-1h-6l-4-1h-4l-3 2 1-3h-2l2-2v-2l-1-3h4l2-2 1-2 1-1 2-3h2Z",GR:"M617 241h3l2 1h1l-3 1-1-1h-3Zm7-18-3-1h-2l-2 1v1h-1l-2-1-1 2 1 1 1 3v1l3 1-2 1h-1v3l-1-1 1 2h-3l-2-1v-1l-1-2 1-1h1l3 1-1-1h-4l-1-2-2-1v-2l2-1 1-2-1-1h2l1-1h3v-1h4l3 1 3-1 1-1 1 1Zm-8 6 2 1-1 1-2-2Z",KG:"m546 308-1 1 2 2 1 1v1l2 2 1-1v2l1 1-1 1h-2l-1 2-3-1-2 1h-7v1h1v3l-2-1h-2l-2 1-1-1v-1l-2-1v-2h1v-2l1-1h2l-1-2h1v-1l1-1 1 1h1v-2l3-1h1l1-1 2-1 1-1h1ZM788 217v1l-3 1-3 1v1l-4 1-1 1-2 1-1-1h-2l-2 2h-1v2h-6l-1 1-1-1h-5l-1-1 1-1 1-1 1 1 2-1 2 1 4-3h-1l-3-2-1 1h-2l-2-2 2-1 1-1 1-2h1l4 1h1l1-2 2-1 2 2 6-1 7 1 1 1Z",RO:"m630 205 2 1 1-1 2 1-1 1-1 1-1 1v3l-5-2-3 1-2 1-7-1-1-1-4-3v-1l-2-1v-1l-2-1 3-1 3-6h2l1-1 5 2 4-2 2-1 1 1 1 2 2 2 1 2-1 2Z",GN:"M511 315v2l1-1 1 1 1-1h1l3-1v3h2v3l1 1-1 1v1h1v3l-1 3h-1l-1 1h-1l-1-1h1l-1-2-1-1h-2v-2l-2-2h-4l-1 2-1 1-1-3-3-1-1-2h-1l2-2 2-1v-3l2 1 3 1Z",GY:"m528 321 2 1v1l1 1 2-1h2l2 1v5l-1 2-1 1v2l2 3-1 1-3-1-5 1-4 1-2 1v-2l1-1-1-2h-1v-1l-2-1 1-1-1-2h1l1-3v-3h-1v-1l1-1 1-1 1 1h2l1-2 1 2ZM662 298l1 2 1 2v2l1 2h1l1 1 3 1 1 2 2 2 2 2h1l-2 1h-1l-2-2-1-1-2-2-1-1-4-1-1 1-2-1-1 2-1-1-1 1h-1l-1-3 2-4v-2h1l1-1 2-1ZM372 336l-1 2h-1l-1 2 1 2 1 1 1 1 1 3h1-2l-1 1h-3v1h-2l-2-2v-1l-1-1 1-3 1-1-1-2h-1v-2h-2l-2-2 1-1v-1l2-1-1-2 1-1h1l1-1-1-1 3 2 1 1 1 2h1l3 3ZM585 347v2h3l1 2h-1l-1 1v2l2 1v4l-1 2-1-1h-3v-1h-1v1h-3v2l1 1-1 1-1 1-3-3-2-2-1-1v-1l-1-1v-2l1-1 1-4h5v-4h6ZM295 287h-1l-1-1h2Zm2-5h6l2 2h2l2 2h1l3 2h3v1l2 1 2 1-2 1h-8l1-1v-1l-2-1-2-1v-1h-2l-3-1-1-1h-4v-2h-3l-1 2h-3v-1l1-1 2-1h3ZM940 216l1 1h-1l-2 2v3l-5 3-2 1v2h1l2 2-1 1h-3l-2 2h-3l-1-1h-1l1-2 1-2v-1l-3-1v-1l1-2 3-1 3-3 1 1h3v-2h2l2-2h1v-2l1 1Z",IS:"m498 116 2 1v1l4 1-1 4-3 2-4 1-1 1-4 1-2 2-5-1-5-3v-2l-3-2 2-3h-6l1-2 4-2 3 3 1 2 2-2v-1l5-1h6l3-2Z",SY:"m673 235-1 2h-2v6l-1 2h-1l-6 3-6 4-1-1-2-1 1-2v-1l2-2-1-1h-1v-2l-1-1 1-2v1l2-4 2 1 3-1 1 1h2l2-1 2-1h5ZM760 224l-2 1-1-1-1 1-1 1 1 1h5l1 1 1-1h5v3h3l1 5-2-1-2 1-1-1-1 1-4 2-1-2 1-3-1-1h-1l-2 1v1l-3 1v1h-1l-3 1-1-1v-1l2-2-1-2v-1h-1l-1-1 1-2 2 1 1-3h2v-1h1l2-2 1 1-1 1ZM812 266l-1 3 1 1v1h-6l-3-1-2-1v-1h-6l-2-2-4-2-2-1 1-3 2-1 2-1h1l1 1 2 1 1 1 1 1h2v1l1 1h2v1h1l3 1 2 1ZM648 356h-11l-1 1h-1v-4l1-1v-1l3-3 1-1-1-1h-1v-4h8l2-2v2h1v1l1 2 1 2v1l-1 1-1 1-1 3Z",TN:"M580 249v2l-2 2-2 2v2l-1 1-1 1-2-6-2-2v-1l-1-1-1-2v-1l2-2v-7l1-1 3-2 2 1 1 1h2l-2 2v2h1l1 2-2 2-2 1 1 2 1 1 2-1v2Z",GH:"M545 319v2l1 1v2l1 1-1 2 1 1v5l2 2h-1l-2 1-3 1-3 1-1 1-3-1 1-1-2-3v-2l1-1 1-2v-8h-1v-1h7Z",UY:"M383 459l-1 2-1 1-2 1h-4l-2-1h-3l-2-2v-2l1-2v-3l1-3v-1l1-2 1 1 1-1 2 2 1 1h1l1 1 2 1 1 1 1 1 1 1 1 1-1 1Z",BD:"M825 285v2l-1 1 1 1-1-1v-2l-1-2-1-1h-2l-1-1v3l-1 1-1-1-2 1v-1l-1-4-1-1 1-2-2-1 1-2v-1l-1-1 1-2 2 1 2 1v2h7v1l-1 2-1 1-1 1v2h1l1-1 1-1 1 2v1Z",SN:"m508 308 1 2v2h1l1 2v1l-3 1-3-1-2-1h-4l-1 1h-4v-2h3l1-1h-3l-2-4 2-3v-1l1-1h2l1-1h3l1 2h1l1 1 1 2ZM651 388h-1l-1 2 1 4 2 1 2 3-1 4h-1l-1 2 1 1-3-2v-1l1-2-1-2v-1h-2l-1-1h-1l-1-1 1-2v-2h1v-5l1-1-1-2-1-1 4 1 1 1v3ZM861 321h-3l1-1-1-1-1 1v-3l-1-1v-1l-1-1v-2l1-1 1-2h6l3 2v-2h2l3-1-1 2 1 2-1 1 1 2-2 1-2 1v1h-2l1 1v1h-2l-2 1Z",HR:"m602 203 1 2v2h-4l-4-1-1 1-1-1v2l1 2 4 4-2-1-3-1-2-2-1-3-1-1-2 1-1-1v-1h5l1-1v-2l3-1 2 2 2 1Zm-4 12 3 1Z",AT:"m596 193 1 2-2 3v1l-1 1-1 1h-7l-3-1h-1l-3-1-1 1h-1l-3-1v-2l2 1 1-1 2 1 1-1h3l1-2 2-1 1-2 1 1h1l1-1 4 1 1-1Z",NI:"M293 307v2l-1 1v5l-1 2 1 1-1 1 1 1h-4l-2-1h-1l-2-2-1-1-2-2h1l1-1v-2h2v-1l1 1 2-2 1-1h3Z",HU:"m612 194 2 2h-2l-3 6-3 1-2-1-2 1-3 1-2-1-2-2-1-1 1-1v-1l2-3 2 1h3v-1h3l2-2h3Z",HN:"M556 317v2l1 2-1 1v1h-1l-1 2-1 1v8h-3v-8l-1-1v-2l-2-1 1-2 1-2h2l1-1v-1l2-1ZM293 307l-2 1h-3l-1 1-2 2-1-1v1h-2v2l-1 1-1-2h-1v-1l-1-1-1 1-2-2h-1l1-1 1-1 2-2 2-1 2 1h2l1-1 1 1 2-1 2 1 1 2h2Z",BG:"m632 212-1 1-1 1-1 1-1 1 2 2h-4l-1 1-1 1-3 1-3-1h-4l1-1-1-1-1-1v-2l2-1-2-1v-2l1-1 1 1 7 1 2-1 3-1Z",JO:"m664 252-1 1-6 1 3 4h-1l-1 1-2 1-1 1-1 1h-3v-4l1-2v-1l1-1v-4l2 1 1 1 6-4Z",AZ:"m692 218 2 2v1l2 2-2 4-1 1v3h-1l-2-2h1l-1-3-4 3v-1l-2-2v-2l-2-1 1-1-2-2h1l4 1v-1l-1-1 1-1 1 1 1 1 2 1Zm-7 11h-2l-2-3 3 1ZM519 330l1 2-1 1 2 1v1h1l1 2-1 1v2l-2-1-3-1-3-3-4-3 1-1 2-1 1-3h1l1 1 1 2h-1l1 1h1l1-1Z",LV:"m628 156 1 1v2l1 3-2 2h-2l-6-3-2 1-6-1-3 2v-4l2-3h2l4 3 2-2v-2l2-1 3 1 1 1Z",SR:"m381 337-1 1v3l2 1-1 2v1l-1 1-2-1-3 1v1h-2l-1-3-1-1-1-1-1-2 1-2h1l1-2 1-1h8Z",PT:"m523 235-2 1-2-1-1-1v-4h-2l1-3 1-3 1-3-1-3 2-1 1 1 2 1 2-1 1 2-2 1v5l-2 1 2 2-1 2v1l-1 2Z",AE:"m715 274 1 2-1 1-1-1v2l-2 4v1l-8-1-3-3v-1l1 1 2-1 4 1 2-1 1-2 3-3 1-1Z",IE:"m526 171 1 5-2 3h-3l-4 2-4-1 1-1 2-4-2-1v-4h4l-1-1 2-2 3-1v1l-3 3 3 1Z",GT:"m686 218-1 1 1 1v1l-4-1h-1l-4 1-2-2-1 1h-3v-5l-2-1-3-1 2-1 3 1h2l5 2v1l2-1h2l1 1v1ZM275 299v6h3l-2 2-1 1-1 1-1 1-1 1h-3l-2-1-1-1v-3l1-2h4v-1l-1-1-2-2h1l1-1Z",RS:"m606 203 2 1v1l2 1v1l4 3-1 1v2l2 1-2 1v2h-3l1-2h-1l-1-1-2 1-3-2-1-1h1l-1-3 1-2h-1v-2l-1-2 2-1Z",CZ:"m590 184 3 1 3 2 1-1 2 2h2l1 2-2 1-1 1h-2l-1 1-1-1-1 1-4-1-1 1h-1l-1-1-4-2-1-3 1-1 6-2Z",KR:"M934 230v2l3 3v4l-1 3h-2v1h-2l-2 1h-2l-1-2 2-2-1-3-1-1 2-1-1-2 2-2h3Z",PA:"M311 327v3h-1l-1 1-1-1v-2l-2-2h-2v1l-2 1-1 1 2 1-2 1h-1v-1h-2v-2h-3l-1 1v-5h1l1 2h4l2-1 2-1h3l2 1Z",LT:"m626 164-2 3-1 1-1 2-2 2h-4v-1l-2-1v-2l-5-2v-3l3-2 6 1 2-1Z",EE:"m630 148-2 3 1 4-1 1h-3l-1-1-3-1-2 1v-2h-2l-1-2v-2l3-1 3-1 5 1Zm-17 4h3l-4 2v-2Z",DK:"M574 168h-3v-3h-1v-5l1-2h3l1-2 2 1-1 3v4l-2 1Zm9-4-3 2h-1l-1-2 4-2Zm-6 1 1 2h-3v-2Z",NL:"m558 182-1 1-2-1Zm0 0h-2l3-4v-2l2 2 1-1-1-2 2-1h4l-1 4-1 2-2 1 1 1-1 2v1h-1l1-2-4-1Z",SK:"m613 191-1 3-2-1h-3l-2 2h-3v1h-3l-2-1-1-2 1-1h2l1-1 2-1 2-1 1 2 2-1h4Z",CR:"M292 320v1l2 3h1-1v5l-1-2h-2l1-1-1-1-2-1h-2l-1-1-1-2 1-1-1-1h1l2 1h2Z",BA:"M603 207h1l-1 2 1 3h-2l-1 2v2l-3-1v-1l-4-4-1-2v-2l1 1 1-1 4 1h3Z",MD:"M630 205v-2l1-2-1-2-2-2-1-2-1-1h2l5 2v2h1l1 2v2l-2-1v2ZM514 327l-1 3-2 1-1 1h-1l-2-1v-1l-1-1-1-2v-1l1-1 1-2h4l2 2v2ZM1035 385h1v1l-2-1Zm-6-4v1h2v1h-2l-1-1Zm3-3v1l1 2h-1l-1-3Zm-3 1-3-2h1l2 1Z",CH:"M574 197v2l3 1-2 2h-2l-1 2-1-2-2 1h-3l-1-1-2-1 3-3 2-1 3-1Z",TG:"m548 320-1 2 2 1v2l1 1v8l-1 1-2-2v-5l-1-1 1-2-1-1v-2l-1-1v-2Z",LK:"M787 323h1l1 2 2 2 1 1 1 3v1l-1 2-3 1-1-1-1-2v-6l1-1Z",DO:"M328 298v-6h2l3 1 1 1 3 1 1 1-1 1h-7l-1 2ZM686 229h-1l-1-2-3-1-2-1h-1l-1-2v-2l4-1 2 2-1 1 2 1v2l2 2Z",BE:"M562 185h1l1 1v1l-2 1 1 1-3-1-2-1-4-2-1-2 2-1 2 1 1-1h1l4 1Z",IL:"M653 250v1h-1l-1 1v2l1 1v1l-1 2v3l-2-6v-1l1-1 1-4h1l2-1Z",FJ:"M1042 415h1l2 2 2 1 3 3v1l-2-1-3-2-2-2-1-1ZM1085 406l1 1v1l-3 1-1-1 1-2Zm5-4-1 1 1 1-3 1-1-1 3-1Z",TW:"m911 283-1 1h-1v-4l2-4 2-1 1 1-2 6Z",HT:"m822 267 2 1v2h-7l-3-1v-1l2-2 1-1 2 1h3ZM499 320l-1-1v-2h-2l-2-2h4l1-1h4v3l-2 1ZM328 293v5l-1-1h-4l-2 1-1-1v-1l5 1 1-1-1-1v-2h-1v-1h1Z",AL:"m606 216 1 1v4l1 1 1 1-1 2-2 1-1-1-1-1v-6l-1-1 2-1Z",LS:"m629 443 3-1 2 2-1 2-2 1-1 2-2-1-1-2 1-1Z",SI:"m595 201-3 1v2l-1 1h-5 1l-1-3v-1h7l1-1Z",BI:"m638 360-1 2 1 1-1 1-1 1-1 2h-1l-1-2v-4l1 1 1-1 1-1Z",MK:"m613 217 1 1 1 1-1 1v1h-3l-1 1h-2l-1-1v-3l2-1h1Z",ME:"m637 356 1 2v2h-2l-1 1-1 1-1-1-1-1h1v-1l2-2h1ZM603 212l1 1 3 2-1 1h-1l-2 1 1 1-3-2v-2l1-2Z",KW:"M692 264h-3v-1l-3-1 1-1 1-1 1-1h1v2l1 2Z",GQ:"M276 305h-1v-6l1-1 1-1 1-1v6ZM274 309h1l2 2 1-1 1 1v2h-2l-2-1h-2l-1-1 1-1ZM676 318l-1 2-1-1-2 1-1-2 2-3h1l2-1v3h-1ZM310 277l-1 1-1-1 1-2Zm1-4v-2h1l-1 1ZM574 350h-1l2-3v-1h4v4Z",LB:"m654 248-2 1h-1l3-5h1l1 1-2 2Z",CY:"m649 241-1 1v1l-3 1h-2v-1l2-2h1Z",QA:"m700 277-1-1v-3l1-1 1 1v2Z",JM:"M311 297h3l-1 1h-3l-2-1 1-1Z",GM:"M494 313v-1h4l-1 1h-2ZM754 515l3 1-1 1-2-1Z",RU:"m3 87 4 2v1l-6 1H0v-3Zm1084 5v-3l3-1v3Zm-359 4-3 1-3-2 2-1Zm329 2-4-1 2-1 3 1Zm-360 2-2 2-3 1-1-2 1-2h2ZM1 102l2 1 5 2 6 3 3 3h2l3 1h3l5 4-2 3-4 1v2l-3 1v2h-2l-2-1-3-1-1-1-1-2-3-1H5l-2-2-2 1 1 1-2 3v-20Zm1039 50 1-2h2Zm-431 14 5 2v2h-10l1-2 2-1 1-1Zm368 4 1 2 1 2v3l-1 2 1 3 1 5 2 3-4 1-1 4v1l1 2 1 3-2-1-1 3-2-2 1-2v-13l1-3-2-2v-7h3Zm18 36-2 1-1-1ZM837 28l4 2-2 4h-8l-2 1-7-2 5-3v-2l8-2Zm-126-1 9 3-6 1-5-2Zm22 2-3 3h-5v-3Zm108 5 7 3-2 6h-6l-8-2-5-2 6-4Zm16 6 6 3 1 2-5 2h-8l-2-3 4-4Zm84 177-1-1v-1h2v-8l3-1 3 1v-2l2-3 1-4 2-1-1-3-3 1h-1l-2 1-4 1-1-2v-1l-2-2-2-2-3-1h-1l-2-1v-1l-2-4-2-5-2-3h-2l-4-2-4 1-5 1-1 1 1 1 1 2-2 2-3 5v1l-2 1-2 2-4-2h-4l-2-1h-1l-3 1-1 1-5 1-1 1h-2l-3-1h-2l-2-1v-1h-2l-2-2h-4l-5 1-3-1-1-1-1-3h-2l-3-1-5-2-2 3-1 2 2 2-1 1-3 2v-1h-8l-1-3h-7l-7 3v1l-2 1h-2l-1 1h-2l-2-2-1 1-3-1-1-2-2-1-1-1-2-1-2 1h-3l-2-2-3 2-1-3-3-5-3-3-3-2-1-2-6 3h-3v-1l-1-1h-6l1-2-2-3-2 1-3-1-2 1h-1l-5 2h-3l-1 1h-2l-4 1-3 1-2-1-1 2v1l3 1v1h-3l-1 1 1 1-3 2 1 1 3 1v2l-2 1-2-1-1 1h-3l-1-2h-2l-1 1-1-1-2 1-2 1h-1l-2-1-1 1-1-2-3-1h-2l-1-1-2 1-2-1-2 1-2 1-2 2v3h-1l-3-2-1 1-1 3v1l-1 1v2h1l1 2h3l2 4-1 1 2 1-3 2-2 1-2 4 1 1 1 2v2l3 4-2 3-2-1-1-1-1-1-3-1v-1l-1-1h-2l-2 1v-1l-5-2h-2l-3-1-2 1-4-4h-1l-1-1h-2l-1-2 2-1 1-2h1l-1-2 4-2h-3v-2l2-1h2l1-1-1-3 1-1-1-2-1-1-3-1-1 1-2-2-3 1-3-2v-2l-3-1v-1l-2-3h-4l-2 1v-1l-1-3h2l2-1-3-3h-1l-1-2v-4l-2-1h-3v-1h-2l-2-1-1-3v-2l-1-1 1-1-1-4 2-3v-1l3-1v-1l-1-2h-3l6-5 5-4v-2l-1-1-3-3 1-1-1-2v-2l-1-1 1-6-3-4 3-3-2-3-3-2 2-3 5-4 4-1 3 1-2 2 4 1h7l13 8h2l1 5-2 2-4 1-3 1-8-2-3-1-7-2 4 3 3 3-1 2 1 2 1 2 2 1 2 2 3 1 2-1v-2h-2l-2-2 1-2 3 1 5 2 2-2-1-3 5-3 2-2 6 2 1-2-1-3h-1l1-4-1-3h6l2 3-3 1-2 1 3 4h2l3-1 1-3 3-1 6-3 5-1 4-3v5l2-1 5-2 3 1 5-3 3 3 3-2-2-4 3-1 7 1 15 7 2-3h-1l-2-3-3-1v-2l1-4-2-1 1-2 4-2 2-6 2-1h5l4 1v4l-2 3 2 4v9l3 3-2 3-1 2-3 4-2 1-3-1-2 1 3 1 5 1 1-2 4-2 1-2 2-2-1-4 1-1 6-1 2 2 1-2-5-2-3 1-4-1v-2l2-5-4-5 2-2 6-3 1 3 8-3h2l5 2 2 1h4l-2-2-4-2-1-3v-3l9-1 9-1v-5l3-2 8-3 10-2 3-2 7 2 11-4 2-3 6-4 3-1 6 2-3 2 7 2 2 1h9l5 2 4 3-1 4-5 3-6 3-5 3-3 1-3 2h4l7-1 1-4 6 2 5 1 4-1 10 1v2l4 1 10 1 1-2-1-2 4-1 3 1 7 1 3 1 2 5-3 2 4 5 4 2 1-1 3-5 5 3 5-2 5 2 2-2h5v-5l7-1 10 1 4 1h5l4 1 3 4 3 1 3 3 4-1 6-1h7l3 2 2 2v3l5 2 3-1h6l7 1 3-2 2 3 3 1 1 2 2-1 2-1-2-3v-3l6 1 3 1h8l3 1 6 1 3 3v20l-4 2-4-1v2l4 2v2l2 2 1 2-2 2-5-2-6 3-3 1-2 1-3 1-1 2-5 2-2 2-3-2h-3l-3 1-2-1-4 2h-4l-1 1-1 3-3 3-1 2 2 1 2 1-1 1v3h1l1 2h-3l-1 1-1 3 1 2-1 1h-3l-2 2-1 1v2l-4 2v2l-1 2-4 4-1-2-1-4v-2l-2-8v-2l1-6 3-2 2-3 2-1 3-2 2-3 6-4 1-1 2-2 3-1 1-2v-6l-2 1-1 3-2 1-5 4-3-2 1-3-2 1-1-1h-5l-3 2v1l-2 2-3 2-2 2 1 2h2l-4 2-2-1-1 1-3-1-1-1-3-1-3-1-1 2h-4l-1 1-4-1-1 1-1-1h-7l-4 2-1 1-3 2-1 2-1 1-4 3-3 3-5 4-2 1 1 2h3v3h1l1 1h3l1-1v-2h3l2 2 3 3-1 3 1 1-2 4-1 2v4l-1 4-2 3-1 2-1 1-1 2-2 3-3 2-2 3h-1l-2 3-4 3h-4v-2h-2l-2 3ZM750 60l-4 1-15 5-4 3-5 1v3l-5 4h-5l-4-2 2-1 8-9 5-3 13-2 8-2 5-3h3l2 3Zm219 2 3 1 4-1h4l5 2-4 3-6 1-9 2-3-1-3-3 1-4 4-2Zm20 3 10 1 2 2-3 1h-5l-5-3Zm-101 6-2 2-3-1 1-2Zm88 3 3 2v2l-8-1 1-3Zm-264 4h4l-3 4-1 3 6 8-8-1h-2l-1-4h-5l-1-3 3-2 4-5Z",US:"M42 144h1l1 2h-2l-3-1Zm-16-16h3l2 3Zm92-30v46l6 1 4 4 1 1 2-1 1-2 3-1 1 3 4 2 6 9h1l3 2 1 1v4l-1 1-2-1 1-3-3-2-3-3-2-1v-2l-2-3-2-1-2 1-1-1-3 1-2-1-3-2-6-3h-1l-3-1-4-1h-2l-4-1-3-1-3-2-4 1v3h-3l-5 4h-2v-4l1-3 2-1v-2l-3 2v1l-5 4-3 2v1l3 1-2 2-1 2h-2l-5 3v1l-3 2-3 1 1 1-4 2h-1l-4 2h-2l-1 1h-2v-1l2-2 3-1 1 1 2-2 3-2 3-3 2-1v-4l-3-1-2 1-1-2h-3l-4 2v-5l-1-2-3 1h-2l-3-2-2-1 2-2-2-1-2-3 3-3 2-3h3l5-2h2l1-1v-4l-3-1-3 2-3-1h-7l-4-4-2-1 10-5h3v2l6 1 1-1 4-1-2-1-3-1v-1h-4l-2-1-1-2-7-5 1-2h6l3-3 1-2 3-3h3l5-3h4l3-2 5 1 3 2 3-1 3 1 1 2 8-1 5 2h5l2 1 6-1 6 3ZM74 295h-1v-4l2 1 1 1Zm251-73-2 1-1-1Zm-63-29h1l5 2h6l3-1 11 6 1 1h1l1 2 1 1 3 2 1 6-1 4-2 1v1l2 1 4-2h3l4-2-1-2 2-1h5l1-2 4-3h11l1-1h1l2-3 1-3 2-2h3l2 1v5l1 1v1h1v1l-3 2h-1l-4 2h-1l-2 4-1 2h1l1 2-1 1-2-1-1 1-4 1h-2l-2 2 1 1-1 2v1l-2 1h-1l1 2-2 2-2-2v4l1 3-2 2h3v1l-3 2v1l-3 2-1 1h-2l-1 1-1 2-5 3-2 5 1 3 1 3 1 1v1l1 4 1 2-1 2v2h-3v-2h-1l-1-2-2-2v-2h-1l1-3v-1l-2-2-1-1-1-1-1 1-3 1v-1l-3-2h-8l-2 1-2-1-1 1 3 1-2 2h-3l-1-1-1-1-1 1-3-1h-2l-3 2-1 1-2 1h-2v1l-2 1-1 3v2l1 2h-1l-2-1-3-1-1-2v-1l-3-3-1-2-2-3h-3l-1 1-1 1-1 1-2-2h-1l-2-3-4-4h-6v1h-8l-6-2-6-2 1-1-8 1-1-3-3-2h-2l-1-1-3-1v-2l-1-1-3-3v-1l-2-2v-2l-1-1v-1l-3-2v-3l-1-2-1-1 1-3-1-5 1-3 1-7-1-5-1-3v-3l2 1h5l-2-3h84l2 1h2ZM50 167v1l-3 2-1-1 1-1Zm98-2v1h-2v-2Zm-7-3h1l3 4v2l-2-1-2-3Zm0-3h1v2h-2v-3Zm-5-2 1 3-3-3Zm-54-2 2 2-5 2h-1l-1-2 1-1h1Zm52-2 2 1v2h-3l-1-2Zm3 1 2 2 1 1-2 1-1-2Z",CA:"m226 80-5-3 5-2 2 2Zm78-5 7 1 3 3v1h-5l-5 1-4-4v-2Zm-21 16 5-1 1-3-4-2 2-2-1-2 2-4 7-2 4 1 3 5-2 3 7-1 3-2 7 1 1 2 4 3 6 1 3 2v2h5l5 4 2 4-3 1-1 3 3 1 2 2 6 1 1 2 6 2 2 2-2 3-2 2h-2v2h-4l-2-3v-1l-3-2-2 2h-4l3 2 2 2 4 3 2 3 1 3h-2l-1 3-2-1-5-1 4 4v2l-3-1-5-2-2-1h-2l-3-2-6-6-4-2-1 2-5 1-4-1v-3l2-1v-1l4 1 7-2-2-3 4-3 2-2-3-6-4-2-1-1-4 1 2-3-5-2-5-5-1 1 1 2-1 1-6-1-3 1-12-2-1-1-4 1-3-2-2-3 4 1 1-2h-4l-2-1-1-3 3-6 4-4h8l-4 5 2 6 3 3Zm-41-17 3 1 5-1 1 1-2 3 2 3 1 5-6 3h-1l-5-5-3-1-3-2h7v-2l-3-2 1-2Zm21-1 3 1h5l-5 7-4-1-2 5h-3l-1-4-1-6 2-2Zm-81 0 7-1 6 4v1l-10 4-4 3-1 4-8 2-2-3-6-3 3-2v-3l3-4-3-4 11-1Zm80-6v2l-4 1-5-3 2-3h4Zm-27-6-3 2-3-3h5Zm14-3 1 6-1 3h-7l-2-2-5-1 3-3-2-1 5-2Zm-32 3 9 2-2 3-3 2-6-1-6 3-5 1h-3l-3-4-3 1-6-2 3-5 3-2h4l5 1 5 4h6v-1l-4-4 6-2Zm42-5 5 2 5-1 3 4 6 3h6l7-2h5l8 3v3l-2 2-5 1h-20l-4-1-6-1-2-4 1-3-3-3-6 1-5-3 3-2Zm-64-3-2 5-9 2-2 2-6-1 1-2 7-6Zm61-3h7l-1 2h-8Zm-45-2 2 1-2 3-5 1-4-1v-3Zm2-4 1 2h-12l9-2Zm41 1 4 1-1 3-6 1-3-4Zm-22-5 11 5 2 5-5-1-1-2-5-1-2-2-7-2 1-2Zm35-13 4 4 9 2 1 4 5 1 1 3-5 2-6 4-5 1-7-2-7-6-1-2-4-4 4-2-2-2 3-2Zm68-14 17 2 7 2-2 4-8 2-2 3-14 6-4 5-12 2-3 3 6 2-5 5h-6v3l-4 2 3 1v3l-7 2-2-2-8 1h-4l-13-1v-2l3-2h5l-4-4 4-1-2-2 2-4 8-1-3-4-4-2 1-3 8 1 11-3-11-1-5 2-11-2-3-3 3-3-5-2 12-2 13-4 7-2 30-1Zm25 190 1 1 1-2h2l-2 2-3 1v-2l2-3h1v2Zm-8-2h5l-2 2-3-1Zm-33 6 3-2 1-2 4-2 2-1 2-1 5-5 4-2 5-1h4l1 1v1l-3 2h-2l1 2 2-1h1l-1 2-1 1 1 1 2 2 3 2 3 1 1-1h2v2l-7 3h-2l-1 2-3 1-1-1v-2l1-1 4-2-1-2-3 2-3 1-1-1h-1v-1l-1-1v-5l-2-1h-3l-2 2-1 3-2 3h-1l-1 1Zm39-16h-1l-4-1-2-2 4 1 3 1Zm-198-6 5 1 3 4 2 1 1 2v1l-4-1-3-2v-1h-2l-1-2h-1l-3-3 1-1Zm217-4-1 3-3 3 3 1v1l3 1h3l1 1-1 1 1 3h2l-1 2h2l-2 3h-3l1-2h-3l-4-1h-9l-1-1 2-2v-1l2-4 2-3 2-3 2-2Zm-76-4-4-1v-1h2Zm-158-6h3l-1 3h-2l-1-2Zm163-9-1 1h-2l1-1Zm-2-28 1 2-1 2-2-1 1-2Zm-7-2-1 1-2 2h-2l-1-1 2-2Zm-9-11h4l5 3 1 3 2-1 2 2-2 1-4-1-1-1-3-1-1 2-2 2-3 1-1-3h-4l3-2-1-2 2-6h2Zm28-16h1l1 4-2 1h-4l-1-2 2-3Zm-66-7 3 2 2 3-2 1h-3l-6-2v-1Zm69 109h-2l-4 3-1 2h-5l-2 1 1 2-4 2h-3l-4 2-2-1v-1l2-1 1-4-1-6-3-2-1-1-1-2h-1l-1-1-11-6-3 1h-6l-5-2h-4l-2-1h-85v-2h-2l-2-2-2-2h-4v-2h-2l-2-1 1-1-3-3 1-3-2-1-1-1-1 1-3-2 1-2-1-1 2-5-1-2-1-1-3-2h-1l-6-9-4-2-1-3-3 1-1 2-2 1-1-1-4-4-6-1V98l6 1 3 2 4 1h3v-2l2-1h6l8-4 5 3 3-3h2l2 3 2 1 3-3 4 3 2-2 6 1 2 1 4 1 2 1 7 1h1l4 1-3 5h13l3-1 1 1 3 1 3 3-2-6v-3l7-1 2 2 4 3 2-1 2 2h13l1-3 3-1 3 2-1 3 2 2 2-1-2-2 6-4v-2l-1-3-6-2-1-2 1-2-1-1v-3l4-3h2l5 3-1 2 5 4-4 3 6 2 1 2 4-2 3 2 1 3h-1v3l3 3 2-2 2-3v-3l3-2-2-1v-3l9 1v1l4 2v2l-4 1 2 3 2 2-1 2-3 3-6 2-3-2h-3l1 3-3 3h-2l-6-3v1l3 2 6 1-1 2-3 3-1 1h-5v1l-4 1 2 1v2h-5l-3 6-1 1-3 5v6l2 1h3l3 8 3-1h2l2 1h3l2 2 2 2 5 1 2 2h4l4 1 1 1-1 2 1 2v4l2 2 3 3 1 1 1 1 1-2h2l1-2v-2l-2-6-1-2 5-3 2-1 2-2v-5l-2-4-4-3 3-3 1-3-2-3 1-3-2-3 1-1 2-1 8 1 3-1 5 4 2 2 3 1 2 1v6l2 2h1l3 3 3-1 3-3 2-5h2l4 7 1 1 1 2 2 1v2l1 2v2l5 5 2 1 1 1h2l2 1-2 1 2 1 1 1h2l2 3v4l-4 3h-4l-2 3-3 2h-4l-4-1-6 1-2-1-3 1-2 1-1 2-3 1-2 1-2 3-1 1-2 3-2 1h-2l-3 2-3 4ZM198 82l3-1 3-2 4 2 8 1 3-5 4 1 3 3 3 7-1 2 2 2 9 4v2l-4-1-2 1 3 1 1 2-5 1-5-1h-3l-2-2-2 2-5 2-7 1h-6l-1-4-9-1-2-3 8-2 6 1 2-1-5-2-7 1h-5l-2-2 1-1-3-3v-2l2-1v-2l2-2 9-3 2 3Z",CN:"M881 292v1l-1 1-1 2-2 1-3-1v-2l3-2 3-1Zm59-76-1-1-1-1v2h-1l-2 2h-2v2h-3l-1-1-3 3-3 1-1 2-1 1h-3l-3 1-2 2 1-2-1-1 2-3-1-1h-2l-2 2-3 1-2 3h-3l-1 2 1 2h3l1 1-1 2h2l2-2h2l2 1h3v2h-2l-3 1-1 2-2 1-2 3 1 1 2 1 2 4v2l2 1-1 1v1l1 1 1 1-3 2h1l2 2v2l-1 3h-1l-3 4-2 4v1l-2 1-1 2h-1l-1 1-4 4-3 1h-2l-2 1h-1l-1-1v2h-2l-1 1h-2l-1 1h-3l-1 1 1 2-2 1-1-2 1-2h-3l-2-1-1 1h-2l-2-2v-3h-3l-1-1-1 1h-1l-1 1h-3l-1 1-2-1-1 1h-1l-1 1 1 1v2h-2v-1h-3v-2h-3l1-1v-2h-2v-3h-3l-1-2 1-2h1l2-2v-6l-1 1-1-2-2-2v1h-2l-1-2-1-2-2 2-2-1h-1l-2 1-2 1-1 2-3 1h-1v-1h-3l-2-1-1 1-2 2v-2h-2l-3 1-2-1-3-1h-1v-1h-2l-1-1v-1h-2l-1-1-1-1-2-1-1-1h-1l-2 1-1-1h-1l-1-2h-2v-1h-1l-1-2-1-2h3v-2l-1-1-1-2 1-1-2-1-1-3h-2l-3-1-1-1v-2l-2-1h-2l1-1-1-5h-3v-3h1v-2h1l2-2h2l1 1 2-1 1-1 4-1v-1l3-1 3-1v-3l2-1-2-4 1-2-2-1 5-1h3l-1-1 2-6h1l5 1 2-2v-2l1-2 2-1 1-1 1-1h2v2l2 1 2 1h1l2 2 1 1 1 1 1 2v2l-1 2v1l2 1h7l3 2 2 1 1 3 2 2h2l7 1 2-1 5 1 1 1 3 1 2 1 2-1v1h3l4-2 5-1h3l3-1 2-2 3-1-2-3 2-2 5 1 1-1 2-2h3l2-1 1-2h2l3-2 4 1 1-1-1-1-3-4h-2l-2 2-1-1-3 1-1-1 3-8 4 2 2-2 2-1v-1l3-5 2-2-1-2-1-1 1-1 5-1 4-1 4 2h2l2 3 2 5 2 4v1l2 1h1l3 1 2 2 2 2v1l1 2 4-1 2-1h1l3-1 1 3-2 1-1 4-2 3v2l-3-1-3 1v8h-2Z",BR:"m388 357 1-2h1v1Zm7-3h4l-1 1-1 3h-5l-1-1v-2l1-1 1-1Zm-21-7h1v-1l3-1 2 1 1 1 1-1h3l3-4 1-1h1v2l2 4v1h2v2l-1 1-2 2h-1l-2 2v3l2-1 1-1 1 2v1h2l2-1 1 1 2-4h4l1 1h1l2 1h2l1 1 1 3h4l2 1 1-1 2 1h4l5 2 1 2 2 2 2 1 2-1 1 1 1 1 1 2 1 3v2l-1 3-1 1-3 4-2 1-1 2-1 2-2 2h-1l-1 1v8l-1 5v1l-1 1v4l-1 2-1 2-2 1v2l-1 2-1 1-1 1v1h-8l-3 2h-1l-3 2-3 2-2 3v7l-1 2-1 1-2 2-1 3h-3l-1 2-1 1-1 2v1l-1 3-3 2v-2l1-1-1-1-1-1-1-1-1-1-2-1-1-1h-1l-1-1-2-2-1 1-1-1 2-2 3-4 2-1 1-1 2-1 1-1v-5h-2v-1l1-4h-4l-1-4v-1l-2-1-1 1-4-1 1-3-1-3v-1l1-2 1-3-1-2-2-1v-3h-5l-1-5v-3l-2-1h-2l-1-1h-2l-1-1-2-1h-2v-1l-2-1-1-2v-4h-4l-3 2-1 1-1 1-4-1-2 1h-1v-5l-2 1h-3v-1h-3l1-2-2-2-1-2 1-1v-1l2-1-1-1 1-2v-1l1-1 2-1 3-1h3l1-5 1-4-1-2-1-2v-2l3-1h-2v-2h6l1-1 2 2 1 2h1l1-1h2l3-2v-1l2-1h-2v-4l-1-1h3l1 1 1-1h2l3-2 2-1-1-1h2v2h1l1 2-1 1-1 3 1 1v1l2 2h2v-1h3l1-1h1Z",GL:"M468 91v2l-7 1v-3Zm-83 5 2 1v2l-4 1-1-1-3-1v-3h4Zm69-87 12 2 5 3 9 3-11 4 11-1 1 3 12 2 5-3 10 2 2 1-9 5-7 1v3l-8-1-2 4h3v4l-5 4v4l2 4 5 1v2h-7l-3 2 1 2h4l2 3v3h-3l4 5-1 1-5 1 2 1v2l-5 2v6l-6-2-2 1 8 4 1 1 1 5-6 1-1-1-2-3h-4l-3 1h-3l-2 2 1 1 4-1 11 2v2l-10 6-9 2h-1l-4 1-3-1-1 2-2 2-3 4-2 2-5 3-4 1h-7l1 1-3 2 1 2-1 2v2l-5 6v4l-1 4-2 4h-2l-4-1-2-2v-3l-3 2h-3l-3-2-1-2-1-3-2-1v-2l-4-4v-1l-2-2v-4l-4-6 1-2-2-2 1-2v-1l1-5h6l2-7h-5l-6-2v-2h5l3 2 1-3-6-2-1-2-4 2-2-1 1-4-1-2 2-2-4-4 1-2-3-2 2-2-7-5v-2l-9-3-6-1-10 3-8-3v-2l-4-1-1-2 5-2-10-5 1-2 10-2 5-2h4l4-6h-6l-1-3 12-5h5l1-4 7-3 12-2 6 1 6 3 6-4 11 4 3-4-7-4 10-2 31-3Z",AU:"M984 484h1l3 1h3l2-1h1v4l-1 2v2l-2-1-1 3h-3l-2-4v-2l-2-2v-1Zm-22-18-1 1h-2v-1h2Zm-3-71v2l-1-1v-1Zm-19-7 2-1 1 1-2 1Zm39 1-1 1 1 2 1 2v3h1l1-1 1 1 2 2v4l2 2v4l1 1 1 2 2 1v-1l2 2 2 1v1l2 2 1 4 1-1 2 2 1 2 1 1 2 2 1 1 1 1 1 2 1 1v4l1 4v2l-1 1v2l-1 3v2l-1 2v2l-2 1-1 2-1 2-1 1-1 3-1 2-1 4v2l-2 1h-3l-3 2-1 1-3 1-1-1-3-1-3 2-3-1-3-1h-1l-1-1h-1l-3-3v-4l-2-1h-3l1-2v-1l-1-2-1 3h-3l1-1h1v-2l2-2-1-2h-1v2l-3 1-2 3-2-3-1-2-1-1-1-1v-1l-2-1h-1l-1-1h-2l-1-1h-9l-2 2h-7l-3 2-2 1-2 3h-11l-1 1-2 1-2 1-2 1-3-1h-2l-1-1-2-1 1-2h1v-7l-1-3-1-2v-2l-1-3-1-2-1-2-1-3h1l-1-1v-2l2 3v-2l-2-3-1-1 1-3v-3l1-2 1 1 2-2 2-1 1-1 2-2 2 1 3-1 2-1 1-1 1 1 4-2 2-1 1-2 1-2v-2l2-2v-1l2 4 1-2-1-2 3-1v-1l1-2h1v-1l2-1h1v-1h1l1-1 3 1 1 2 4 1 1-1-1-1 1-1v-2h1v-1l1-1 1-1 1-1h4l1-2h1v1h2l1 1h3l2-1 1 2 1-2 2 2-2 1 1 1-2 1v1l-1 1-1 2v1l2 1 2 2h1l2 1 2 1 2 1 1 1 2 1h1l1-1 2-2v-2l1-3v-3l-1-1 1-2v-2l1-2v-3h1l1 1 1 2Z",IN:"m783 253 1 2h1v1h2l1 2h1l1 1-2 1-1 3 2 1 4 2 2 2h6v1l2 1 3 1h6v-1l-1-1 1-3h2v3l3 1h7v-2l-2-1h1l3-1 1-2 2-1 2-1h1l2 1 2-2 1 2 1 2h2v1l-2 2-2 1-3 2v1l-2 2 1 2-2 2v1h-2v3l-1 1v1l-1 1h-1v-3l-1-2-1 1-1 1h-1v-2l1-1 1-1 1-2v-1h-7v-2l-2-1-2-1-1 2 1 1v1l-1 2 2 1-1 2 1 1 1 4v1l-3 1-1-1-2 1-1 1v3l-2 1-2 1-2 1-2 3-2 1-1 1-3 2v1l-1 1h-2l-1 2h-2l-1 2 1 2v5l-1 3-1 1 1 1v3h-2l-1 2v1h-2v1l-1 2-1 1-2-1-1-2-1-2v-1l-1-3-1-1-1-3-2-3v-2l-1-2-1-2v-1l-2-2v-5l-1-3-1-4 1-2-1-2v-4l-1 1-1 1 1 1-1 1-3 1h-1l-2-1-3-3 3-1 1-2-2 1h-1l-2-1-2-3h2v-1h7v-1l-1-3-1-1-1-1v-1l-2-1 1-1 1-2 1-1 1 1 4-1 1-2 2-1 1-3 1-1 1-1 2-2v-2l2-2-2-1-2-2 1-1-1-4 1-1 4 1 3-1 1-1 3-1 1 3 2 1-1 1 1 2 1 1v2h-3Z",ID:"M837 337h3l1 1 1 2 1 1 4 2 2 3 1 1 1-1 1 2h1l1 1 1 2h1l1 1h1l1 1-1 1v1l1 1h2l1 3v1h2l1 1 1 1-1 2 1 4-1 2v1l-1-1h-2v1l-3-3-2-1-2-1-1-2-1-1-3-3v-1l-1-2v-1l-2-3-2-1-1-3-1-2-2-1-1-2-1-2-2-1-3-2-1-2v-1h2l1 1Zm71 45h2l1 2h-2l-2-1h-1v-1Zm16 0-2 2h-2l-1-1 1-1 1-1h1l1-1Zm-26-3-1 1h-1v-1l1-1 1 1Zm19 0-4 1h-2l-3-1 2-1 3 1h3Zm-14-1h2v2h-2l-4 1v-2l1-1 1 1 2-1Zm-8 0v1l-1 1-2-2Zm34-2-1 1h-2l2-1Zm35 2v1l-2-1 1-2h1l1-1 1 1Zm-21-1h-1v-1h2Zm-53-2h-4l1-1h3Zm62-2v1h-1v-2Zm-82-2 1 1h2l1 2h5l1-1h3l1 1h2l1 2h3l2 1-1 2 1 1-4-2-2 1-3-1h-3l-2-1-2-1h-2l-1 1-1-1h-4v-2h-4l2-2v-1l2 1 1-1Zm83-1v2h-1v-2Zm-37-1v-2h1Zm13-7 1 1v1l-1 1-2-1v-1Zm9 0h2l1 2v1l-3-2-1 1-2-1h-2v-1h4Zm-65 0-2 1v-2h1Zm50-4v1h-1v-1Zm32 0h2v1Zm-89 0 1 3h1v1h-2l-1-2-2-1 2-1Zm67 0h-2v-1Zm-88 0h-1v-2l2 2Zm110-3h1v1Zm17 6v20l-3-3h-4l1-2-1-1v-1l-1-2-1-2-3-2h-1l-2-1h-3l-3-2-1-2-2 2-1-1v-1l-1-1 2-2 2 1v-2l-2 1h-2l-1-1-1-1-1-1-1-1 2-1 1-1h2l2 1h2l1 2-1 1v2l3 3h1l3-2v-1h1l1-1 2-1h3l3 2h3Zm-132-12 2 1-1 1-1-1-1-1Zm83 1-1 2h-13v1l-1 1 1 1 1 1v1h1l2-1h1l1-1h2l-1 2-2 2h-2l2 1 2 3-1 1 2 2-2 1-1 1-1-1v-2l-2-1 1-1v-2h-2l-1 1 1 2-1 1 1 2-1 2v1h-2l-1-1 1-3v-2h-2v-3h1v-4l2-2v-3l1-2 1 1 1-2h2v1h5l2 1 1-1 2-2 1 1Zm9 0h1l1-2h1v2h-2l2 2h-3l1 3-1-1v-2h-1v-5l2 1v1l-1 1Zm-31-10v2h-1l1 2 1 2v1l1 1 2 2-1 1-1-1-1 1-1 1v3l-3 3v2l-1 2-1 2-4 2v-2l-2-1v1l-1-1h-4l-1 1v-2h-5l-1-5-1-1h-1v-3l-1-1v-3l1-2h1v1l3 2h4l1-1 1-1 3 1h3l1-2v-1h1l-1-2h2v-3l1-1h4Z",AR:"m355 421 1 1 2 3 2 1 4 1 1 2 3 1 2 1 1 1-1 2-1 1v1l-1 1 4 1 2 1 1-1h1l1-1h1l1-2 1-3h2v5l-1 1-2 1-1 1-2 1-3 4-2 2-1 2v1l-1 3v4h-1v2l1 3 2 2 1 1-1 1 1 1 1 1v2l-2 3v1l-2 1-5 2h-7l-1 1 1 1-1 2v3l-2 1h-2l-3-1h-1v4l2 2h2v1h-1l-2-1-1 1 2 1-2 1-1 1v3l-1 1v1h-1l-3 1-2 3v1l3 3h2l1 1v2l-4 3-2 3v2l-4 2-1 2 1 3 2 3-5-1-6-1-1-1v-3l-1-1h-1l-2-2v-2l3-3 1-2-1-2 1-1 1-1v-2l1-1-1-1 1-2 1-2-1-1 1-1v-1h-1v-2l-1-2 1-1h-1v-3l1-1-1-1v-4l1-1v-2l1-3h1v-8l2-2v-4l2-2v-3h-1v-3l-2-3v-2l2-2v-4h1v-3l2-1 1-3h1l-1-2 1-1-1-2 1-1-1-1 1-2 3-1 1-3v-1l1-2h1l1-1 1 1h3l1 2 1-2h4Zm-18 117v-9l1 2 1 2 2 2 6 3-3 1h-2Z",KZ:"m809 191-1 1-1 1-2 1-1 2v2l-2 2-5-1h-1l-2 6 1 1h-3l-5 1 2 1-1 2 2 4-2 1v2l-2-1-1-1-7-1-6 1-2-2-2 1-1 2h-1l-4-1h-1l-1 2-2 1-1 1-3 1-2 3-1-2h-4l-1-3h-1v-4l-1 1-1-2-1-1h-9l-3-2v-1l-8-4-8 2v13l-1 1-2-3-2-1h-3l-2 2v-4h-2l-2-3-1-2-2-1 1-1h1l2-3h4l1-3v-1l-1-2-2 1-3-1-2 1-2 1h-2v1l-2-1 1-1-2-4h-3l-1-2h-1v-2l1-1v-1l1-3 1-1 3 2h1v-3l2-2 2-1 2-1 2 1 2-1 1 1h2l3 1 1 2 1-1 2 1h1l2-1 2-1 1 1 1-1h2l1 2h3l1-1 2 1 2-1v-2l-3-1-1-1 3-2-1-1 1-1h3v-1l-3-1v-1l1-2 2 1 3-1 4-1h2l1-1h3l5-2h1l2-1 3 1 2-1 2 3-1 2h6l1 1v1h3l6-3 1 2 3 2 3 3 3 5 1 3 3-2 2 2h3l2-1 2 1 1 1 2 1 1 2 3 1 1-1Z",MX:"m251 273-1 3-1 2v9l2 3 2 2v2l2 2h3l1 1h5v-1h5l-1-1 2-1 1-2v-3l2-1 3-1h6v2l-2 2v2l-1 4-1-1-1 1-1 1-1 1h-5l-1 1h-1l2 2 1 1v1h-4l-1 2v3l-2-2-3-3-2-1-1 1v-1l-2 1-3 1-2-1h-2l-2-1h-1l-3-1-1-1-2-1-3-1v-1h-3l-2-1-2-2-3-1-1-2-1-2 1-2v-1l-1-2v-2l-2-1-2-3-3-2-1-2-3-2v-3h-1l-1-1-2-1v-2h-1l-2-2-2-1v-1l-1-3-1-2v-1l-4-2-2-1v3l1 2v1l1 1 2 2v1l2 2 1 2 1 1 1 1 1 1 1 3 1 1 1 2v2h2l2 3v1l-2 1-1-3-3-2-2-2v-2l-1-2-2-1-1-1h-1l-1-1h-2l-1-2 2-1 1-1-1-1-2-3-2-1-1-3-2-3-2-3 8-1-1 1 6 2 6 2h8v-1h6l4 4 2 3h1l2 2 1-1 1-1 1-1h3l2 3 1 2 3 3v1l1 2 3 1 2 1Z",DZ:"m571 236-1 1v7l-2 2v1l1 2 1 1v1l2 2 2 6h-1l1 2 1 2v8h-1v1l1 3 1 2h1l3 1 1 3-8 4-5 4-5 4-5 1-3 1-1-1h1v-2l-3-1h-2l-1-2-1-1-7-5-6-4-5-3-4-3-7-5v-4l3-2 2-1h1v-1h4l1-2 2-1 1-2v-1l3-1 2-1h3l1-1-2-1v-7l-2-1h1l3-2 3-1 2-1 2-1h4l1-1h5l2 1 2-1 2-1 1 1h3Z",CD:"m628 338 1 1 1 1 2-1 1 1 2-1 1 2h1l1 1v4h1l1 1-1 1-3 3v1l-1 1v4l-2 2v1h-1l1 1v4l1 2v1l1 2-1 1 1 2 2 2 1 3-5 1-2 2 1 2v2l-1 3v1l2 2h1l1-1v4l-1-1-1 1-2-3-3-1-1-2v1h-3l-2-1-1-1-2 1v-1l-1-1-1 1h-4v-1l-1-2-1-2v-7h-4v-1h-2l-1 1v2h-3l-3 1-1-2-1-3v-1l-2-1h-12l1-1v-1l1-2h1l1 1 2-2 1 2h1l2-3h1l1-1v-4l1-1 1-2 1-1 2-1v-5l1-2v-1l1-3v-4l2-2h3l1 2h3l3 1 1-2h2l3-1h2l1-1 4 1 1-1Z",NO:"m638 97-5 4v-3l-4-2-4 1-1 1-1 3-2 3-4-2-4 1-3-3-3 1-2 4-4-1-2 3-2-1-3 4 1 2-3 2-3 2v4l-3 4h2l-1 3h-4l-2 3 1 2v6l2 1-2 2 1 2v2l-3 2 1 2-2 1-1-1-4 1-4 4h-4l-4-2 1-4-2 1v-6l-1-1v-4l2-3 2-2h3l-1-1 4-1v-2h4v-2l5-5 3-1v-2l2-2 1-3 5-5v-1l4-2 1-3 5-2v-2l6-2h3l1-2 4-1 1 2 4-4 1-1h3l6-1 4 1 6 4-4 1v2Z",MN:"m898 188-3 8 1 1 3-1 1 1 2-2h2l3 4 1 1-1 1-4-1-3 2h-2l-1 2-2 1h-3l-2 2-1 1-5-1-2 2 2 3-3 1-2 2-3 1h-3l-5 1-4 2h-3v-1l-2 1-2-1-3-1-1-1-5-1-2 1-7-1h-2l-2-2-1-3-2-1-3-2h-7l-2-1v-1l1-2v-2l-1-2-1-1-1-1-2-2h-1l-2-1-2-1v-2l1-1h2l2-1v-1l7-3h7l1 3h8v1l3-2 1-1-2-2 1-2 2-3 5 2 3 1h2l1 3 1 1 3 1 5-1h4l2 2h2v1l2 1h2l3 1h2l1-1 5-1 1-1 3-1h1l2 1h3Z",SA:"m686 262 3 1v1h3l1 3 2 2 1 1 1 2h-1l2 3 1 1 1 1 1 1v1l3 3 8 1 1 2-2 7-4 1-5 2-9 1-2 1-2 3v1h-2l-1-1h-8l-2-1v3l-1 1-1-1-1-1v-1l-2-2-1-2-1-1-1-3-2-1-1-1-2-2v-5l-2-3-1-2h-1l-1-2-1-1-1-2-1-2-2-3-1-2h-2v-2l1-2h3l1-1 1-1 2-1 1-1h1l-3-4 6-1 1-1 3 1 5 3 3 2 5 4 5 1Z",CL:"M342 540h-3v-1h2Zm-8-1h2l2 1v1h-3l-2-2Zm-10-6 2 1h-3l-1-2Zm13-4v9h-5l-3-1 1-1v-2l3-2-1-1 2-2Zm-17-14-1 3h-2v-3l2-2Zm-1-2h-1l-1-2h2Zm5-15h-1v-1l2 1Zm-2-1h-1l1 3h-1l-2-2v-1Zm0-4h-2v-2l1-4 1 1 1 2h-1l1 2Zm20-70v1l-1 3-3 1-1 2 1 1-1 1 1 2-1 1 1 2h-1l-1 3-2 1v3h-1v4l-2 2v2l2 3v3h1v3l-2 2v4l-2 2v8h-1l-1 3v2l-1 1v4l1 1-1 1v3h1l-1 1 1 2v2h1v1l-1 1 1 1-1 2-1 2 1 1-1 1v2l-1 1-1 1 1 2-1 2-3 3v2l2 2h1l1 1v3l1 1 6 1 5 1-3-1-1 1-3 2-1 4h-1l-3-1 1-1 2-1v-1l-3 2h-2l-3-3 1-2-1-1v-2l-3-1v-2l2-3v-5l-1-1v-2l1-2v-1l-4-2 2-1v-1l2-1 1-1h1l1-2 2-1v-1l-2-1 1-2 1-5v-2h-3l-1-2 1-4 1-1v-2l-1-3 1-1-1-1v-2h1l1-2v-1l1-2 1-2 1-3 1-2v-2l1-1-1-3v-5l1-1v-1l-1-3 1-2 1-2 1-4v-2l1-2-1-2 1-3-1-2 1-1 1-4-1-2 1-3-1-5h1l1-2h1v1h1v3l2 2-1 1v2h1l1 3v4Z",ES:"m540 213 1 1 4 1 4 1h1l1 1 4-1v2l-4 2-3 1-4 6v1l2 2-2 1-1 1v2h-2l-1 1-1 1-7 1h-1l-2 1-1 1-1-1-2-2-1-1h-1l-1-1 1-2v-1l1-2-2-2 2-1v-5l2-1-1-2-2 1-2-1-1-1-2 1 1-1-2-3 1-1 4-2 1 1h5l3 1 3-1 2 1h2Zm15 13-1 2-2-2h1Zm-59 39-1 1-1-1Z",IR:"M685 229h1l4-3 1 3h-1l2 2h1l1 2 1 1h2l1 2 2 1h3l6-1-1-2h3l1-1 1-1h2l1-1h2l1 1 3 1h1l1 1 1 1 2 1 1 1h2v6l-2 3v1l1 1-1 1 1 3v3h3v2l-2 2-1 1 2 2 1 1v1l2 1 1 1v2h1v2l-2 1-2 1v1l-1 2h-2l-4-1h-5l-1-1-1-3-2-1h-3l-2 2-3-1-1-1-2-1-1-1h-3l-1-1v-2l-2-2v-1l-2-2h-3l-1 1-2-2v-2h-1l1-3-2-2-2-1h-1v-1l-3-3 1-1v-2l2-1-2-2-1-1-1-4-1-2h-1l1-2-2-4 3-1 2 3Z",ML:"M558 294v8l-1 3-1 1h-7l-1 1-2 1-2-1h-1l-1 1-2 1-1 1h-1l-3 1v2h-1l-1-1-1 1v1h-1l1 2h-2l-1 1v2h-1v2l-1 1-1-2-1 2h-2l-1-1-1 1-1-1v-3h-2v-3l-3 1h-1l-1 1-1-1-1 1v-3l-1-2h-1v-2l-1-2 1-1v-1l1-1 2 2 1-1h15l1-3-1-1-1-6-1-8v-4l-1-8h5l5 3 6 4 7 5 1 1 1 2h2l3 1v2h-1l1 1Z",PE:"M333 366h-3l-3 1-2 1-1 1v1l-1 2 1 1-2 1v1l-1 1 1 2 2 2-1 2h3v1h3l2-1v5h1l2-1 3 5-1 1v4l-1 2v1l1 1-1 1v1l1 1v1l-2 2 1 1h-1l-1 2h-1l-3-2-1-1-1-1-1-1-5-2h-1l-2-2-2-2h-1l-1-2v-2l-2-3-1-1v-1l-1-2v-1l-2-2-1-5-2-2-2-3-1-1-2-1-1-1h1l-1-3v-2l1-2 2-1v2h-1v1h1l2 1 1 1h1l2-4v-1l1-1 4-1 2-1 1-2 1-3v-2l2 1 1 1v1l2 1v1l1 1 1 1h6l3 1-2 4h1Z",JP:"M973 220v3l1 1 1 2v2l-1 1-1 2h-1v5l-1 1v2l1 1-2 1v1l-2 1v-2l-1 1-1 2-1-2-2 2-4-1-1 1 1 1h-1l-1 3h-2l-1-2v-1l1-1-2-1-2 1-3 1h-3v2l-1-1h-3l1-1h1l4-4h4l3-1 2 1 1-1v-1l2-2 2-1 3-1 2-2 1-1 2-5v-4l1-1h2Zm7-10 3 1h1l1 3h-2l-2 1-2 1v2l-5-2-2 1-2-1v1h1l-1 3-1-1v-1l-1-2h1l2-3 2 1 1-4v-4l1-1 2 3Zm-38 37h1l1 2 1 1-1 1-1 4-3 1-1-1 1-1-1-2 2-1-4-2 3-2 1-1Zm10-2h1v2h-1l-1 2-1-1h-1l-1 2h-2v-2l1-2h2l2-1Z",PK:"m781 241-3 1-1 1-3 1-4-1-1 1 1 4-1 1 2 2 2 1-2 2v2l-2 2-1 1-1 1-1 3-2 1-1 2-4 1-1-1-1 1-1 2-1 1 2 1v1l1 1 1 1 1 3v1h-7v1h-2l-1 1-1-2-1-1-1-1v-1l-1-1-2 1h-13l1-2v-1l2-1 2-1v-2h-1v-2l-1-1-2-1v-1l-1-1-2-2 5 1h8l3-1 1-4 2-1h1l1-1 2-1 2 1 1-1v-4h2l1-1-1-2h3v-2l2-2-1-2v-1l1-1 3-2h8l2 1v2l1 1 3 1Z",SD:"M657 285v3l1 2v5l2 1 2 2-1 1-2 1-1 1h-1v2l-2 4 1 3-1 2v1l-1 1-1 1-2 2v3h-1l-1 1v1l-1 2v-2l-3-2v-2l1-2-2 1h-2 1v2l-1 2-1 1-1 1h-2l-2-1h-1l-1 1-1 1-1 1h-2l-1-1h-4l-2-2v-1l-2 1-1 1-1 3-1 1-2-1 1-3-2-2-1-1v-1l-1-1v-3l-2-1 1-2v-1l1-1v-1l1-1v-1l1-2h3v-13h3v-7h28Z",LY:"m621 254-1 1 1 2-1 2 1 3v30h-3v1l-8-3-5-3-6-3-6-3-3 1-2 1-2-1-5-1-1-3-3-1h-1l-1-2-1-3v-1h1v-8l-1-2-1-2h1l1-1 1-1v-2l2-2 2-2v-2l2 1h6l1 1h2l1 3 2 1 4 1 2 1 2 1h3l1-2-1-3 1-1 1-1 4-1h1l3 1 1 1 2 1h2Z",ZA:"m640 422 1 3v2l1 2v4h-3l-1 2v1l1 1 1 1h2v-2h3l-1 5-1 1-2 1-1 2-3 5-5 4-3 3-2 1-2 1h-1l-1 1h-2l-1 1-4-1h-4l-1 1h-2l-2 1-1 1h-2l-2-3h-1v-1l-2-2 1-1v-4l-1-2-2-3-1-2-1-3h1l1-2 1 1v1l2 1h3l2-1v-12h2l1 3-1 2 1 1h3l1-1 2-1v-2l1-1 2 1 3 1 2-1 1-2 2-1 1-1 1-2 2-2 1-1 2-1 2-1h1l2 1Zm-11 21-1 2-1 1 1 2 2 1 1-2 2-1 1-2-2-2Z",CO:"m329 317-2 1-1 1-1 1-1 1v2l-1 2h2v2l1 1v2l1 2h6l2 2h5l1 1-1 2v4l1 2-1 1 2 2 1 3-2-2-1 1h-6v2h2l-3 1v2l1 2 1 2-1 4-1 5-1-1h-1l2-4-3-1h-6l-1-1-1-1v-1l-2-1v-1l-1-1-2-1h-2l-1-1h-3l-1-1-2-1-2-1 1-1v-2h1l2-2 1-2v-6l-1-2 1-1-2-2 1-1h1v-3l1 2v-2l2-1v-1l2-1v-2l1-1 1-2 2 1 1-1h2l2-2h1l1-1 1-1 1 1Z",NE:"m590 282 1 4v1l1 2 1 2v1l-1 9-3 4-3 4v2h-1l-2 1v1l-3-1h-2l-2 1-2 1h-3l-1-1-1-1-3 1-2-1-2-1h-2l-2 1-1 2-1 1v2l-2-2-2 1v1l-1-1v-2l-1 1-2-2v-1l-1-1-2-2 1-1 2-1 1-1h7l1-1 1-3v-8l5-1 5-4 5-4 8-4 5 1 2 1Z",SE:"M618 118h-3l-5 2-1 3 1 2-2 2-5 3-2 2h-2l-1 5-1 1v4l2 1 2 1 1 3-3 2-1 2-3 1v6l-2 4h-3l-2 2v1l-3 1-2-4 1-2-1-1-3-5-1-4 2-1-1-2 3-2v-2l-1-2 2-2-2-1v-6l-1-2 2-3h4l1-3h-2l3-4v-4l3-2 3-2-1-2 3-4 2 1 2-3 4 1 2-4 5 3 2 1 3 2-1 3 2 3-1 1Zm-15 37-1 3-2-2 1-1Z",MM:"M645 436h-3v-7l-1-2v-2l-1-3 3-3v-2l2-3-1-3 1-2v-5l-2-1h-1l-2-1h-3v-3l4-2 5-1 1 1h2v1l1 2-1 2v1l3 2-1-1 1-2h1l1-4-2-3-2-1-1-4 1-2h3l3 1 1-1 2 1 1-2 2 1v-1h2l2-1 2-1v2l-1 1 1 4v5l1 1-1 2-2 2v1l-3 2-3 1-2 1-2 3-3 2-2 2h-1v2l1 1 1 3v2l1 2-1 2v2l-1 1-1 1-4 1-2 1v2h1ZM673 315l-2 3 1 2 2-1 1 1-1 1 1 1 1 1 1 2 1 1 9 3h3l-6 6-3 3h-4l-2 1v1l-3 1h-2l-2-1-2 1-1 2-5-1-3-2h-3l-1-2v-1l-1-1h-1l-1-3-2-2-1-1h-1l-1-1 1-1 2-1v-3l1-2v-1l1-1h1v-3l2-2 1-1 1-1v-1l1-2h1l1-1 1 1 1-2 2 1 1-1 4 1 1 1 2 2 1 1ZM614 320h-1l-2 1v1l-2 1-1 1-1 1-4 1v1l-2 2h-3l-2 1h-4v-1l-1-2-3-2-1-1 1-1h4l-1-2v-4l-1-2-1-1-1-1-2-2v-2l3-4 3-4 1-9v-1l-1-2-1-2v-1l-1-4 3-1 6 3 6 3 5 3 8 3v12h-3l-1 2v1l-1 1v1l-1 1v1l-1 2 2 1v3l1 1ZM582 371l-1-3 1-1h3-1l-1 2v1Zm36 15v5l-1 2h-5v11l4 3-6 1h-6l-2-1-1-1h-14l-1-1h-1l-2 1h-2v-5l1-3 1-4 1-2 2-1 1-2v-2l-2-4-1-2 1-2 1-1-2-3v-1l-1-1-1-1 3-1h9l2 1v1l1 3 1 2 3-1h3v-2l1-1h2v1h4v7l1 2 1 2v1h4ZM851 287l-1 1-1 1-1 2-1-1-1 1-1 1h-3l-1 1v3h-1l1 3 2 2 1 2-1 3-1 1v1l3 3v3l1 1 1 2-2 2-1 2v1l-1-1 1-1v-2l-1-5-1-2-1-3v-3l-1-1 1-1h-1l-1-2-1 1-3 2-1 1h-2l-1-2-1 1 1-5v-2l-1-2h-1l1-2-2-1-1-1-1-1-1-1-1-1 1-1v-2h1l1-1v-1l1-1v-3h2v-1l2-2-1-2 2-2v-1l3-2 2-1 2-2v-2l2 2 1 2 1-1v6l-2 2h-1l-1 2 1 2h3v3h2v2l-1 1h3v2Z",BO:"M616 407h5l-2 1-3 2v-2l-7 1v8l-1 4h-3v21l-2 1h-3l-2-1v-1l-1-1-1 2h-1l-2-2-2-2-1-3v-5l-1-2v-5l-1-2-1-1-1-3-1-2-2-4-1-1-1-2v-2h2l2-1h1l1 1h14l1 1 2 1h6ZM369 415v-1l-3-2h-3l-5 1v2l-2 1v2l-1 3h-4l-1 2-1-2h-3l-1-1-1 1h-1l-1 2h-3v-4l-1-3h-1v-2l1-1-2-2v-3h-1v-1l-1-1 2-2v-1l-1-1v-1l1-1-1-1v-1l1-2v-4l1-1-3-5 4 1 1-1 1-1 3-2h4v4l1 2 2 1v1h2l2 1 1 1h2l1 1h2l2 1v3l1 5h5v3l2 1 1 2-1 3-1 2Z",VE:"m363 327 1 1-1 1h-1l-1 1 1 2-2 1v1l-1 1 2 2 1 1-2 1-3 2h-2l-1 1-1-1h-3l1 1v4h2l-2 1v1l-3 2h-2l-1 1h-1l-1-2-1-3-2-2 1-1-1-2v-4l1-2-1-1h-5l-2-2h-6l-1-2v-2l-1-1v-2h-2l1-2v-2l1-1 1-1 1-1 2-1-2 1 1 3-1 2 1 3 1-1h1v-1l-1-2-1-2h1l3-2v-1l1-1 1 2h3l1 1v2h6l2 1h3l3-1 3-1v1l1 1 5 3h-1l-1 3 2-1Z",MR:"m508 308-2-1-1-2-1-1h-1l-1-2h-3l-1 1h-2l-1 1v1-2l1-4v-4l-1-1 1-2v-1l-1-1-2-1 1-2h12l-1-3 1-2 1-1h2v-8h10v-5l7 5 4 3h-5l1 8v4l1 8 1 6 1 1-1 3h-15l-1 1-2-2-1 1v1ZM760 217l-1 1-2 1 2 2h2l1-1 3 2h1l-4 3-2-1-2-1 1-1-1-1-2 2h-1v1h-2l-1 3-2-1-1 2 1 1h1v1l1 2-2 2v1h-2l-2-1 1-2-3-1-5-2-4-3-3-5h-4l-1-1v-2l-1-1h-1l-3-2h-1l-1 2h-1l-2 1 1 3-4-1v-13l8-2 8 4v1l3 2h9l1 1 1 2 1-1v4h1l1 3h4l1 2 2-3 3-1 1-1Z",UA:"M661 199h-2l-1 1-3 1h-2l-2 1v2l2 2 2-1v2l-2-1-2 2h-1l-2 1h-2l1-3-4-1 4-2-1-1-3 1-1-1v-2l-4 1-2 3h-1v2l-2-1-1 1-2-1 3-2v-2l2 1v-2l-1-2h-1v-2l-5-2h-2l-2 1-4 2-5-2-1 1-2-2 1-3 1-2 3-3 1-2-2-2 3-2h4l4 1h6l1 1 3-1 2-2h2l2-1h4l2 3v1l3 1v2l3 2 3-1 2 2 1-1 3 1 1 1 1 2-1 1 1 3-1 1h-2l-2 1Z",SO:"m671 358-2-2v-11l1-2 2-2 3-1v-1l2-1h4l3-3 6-6h-3l-9-3-1-1-1-2-1-1-1-1 1-1 1-2 2 2 1 1h2l3-1h2l3-1h4l4-1 2-1h1v4l-1 1v2l-1 2-1 2-3 4v2l-2 2-2 3-3 4-3 3-3 2-2 1-2 2-5 5Z",FR:"m563 189 1 1 1 1h3l2 1-2 3v2l-2 1-3 3 2 1 1 1 1 2-2 1 1 2v2h2v1h-1v1l-2 2h-1l-3-1h-2l-2-1-2 2-1 1 1 1-4 1-1-1h-1l-4-1-4-1-1-1 1-1v-4l1-4v-2l-2-1-1-2-4-2-3-1-1-1 1-1-1-1 4-1 2 1h4l-2-4h2l1 1h3l1-1 3-1 1-2v-1l1-1 2-1 1 2 4 2 2 1Zm11 26v2l-1 3-1-1-1-3Z",NZ:"m1069 486 2-1h2l-1 1 1 1-3 3-1 2-1 1 1 2h-2l-3 1-1 3-1 3-3 3h-4l-1-1h-4v-3l1-2 2-1 2-2h1l3-2 2-2h1l2-2v-3l2-1v-2l2-1 1 1Zm1-23 1 1h2v2l1 2v2h2v-1l2 1v3l4 1 2-2 2 1-1 3h-1v2h-2l-1 1v1l-1 2-2 3-2 2-2-1 1-3 1-1-1-1-3-2-1-1 3-1 1-4-1-1v-2h-1v-1l-1-1-3-4Z",AF:"m772 235-1 1h-6l-3 2-1 1v1l1 2-2 2v2h-3l1 2-1 1h-2v4l-1 1-2-1-2 1-1 1h-1l-2 1-1 4-3 1h-8l-5-1 1-1 2-2v-2h-3v-3l-1-3 1-1-1-1v-1l2-3v-3l5 2 1-1v-1l2-1 2-1 1-3h2l1-1h2l2 1h2l1 1 3-1h1v-1l3-1v-1l2-1h1l1 1-1 3 1 2 4-2 1-1 1 1 2-1Z",IT:"m574 222 1 1-1 5h-2v1l-2-1 1-4-1-1 3-2Zm18 9-1 3v3l-2-1-6-3 2-1h5Zm-6-30v1l1 3-2-1-3 1 1 2-1 1 1 2 3 2 1 3 3 3h3v2l4 1 2 2 2 2h-1l-1-1-3-1-1 3 2 1v2l-2 1v1l-1 1h-1v-2h1v-3l-1-2-3-1v-1l-2-1-1-1h-2l-2-1-3-3-3-3-2-4-3-1-3 2h-1v-1h-2v-2l-1-2 2-1-1-2h3l2-1 1 2 1-2h2l2-2h1l1-1 3 1h1Zm-3 10Z",PG:"M1008 367h-1v-2l2 1Zm9 6-1 1-1-1v-1l-1-1v-1l2 2h1Zm-12-7h1v1l-1 1 1 1-1 1h-1l-1 1-3 1h-2l-1-1v1l-3-1v-1h6l2-1 1-1h1v-2Zm-33 15v-20l4 1 2 1h2l1 2h1l2 1h1l1 2 1 2h1l2 1h1l2 1v1h-3v1l1 1 1 2 1 1 1 1 1 2h2v1l1 1h1l2 1v1h-3l-6-1-3-4-2-2-3-1-1-1-3 2h-2l1 2-2 1h-5Z",PH:"M927 325v1l1 3v2l-1 2-1-2-1 1v4l-3-1-1-1-1-2 1-1-1-1-1-1v2l-3-1-1 2v-3l2-1 2-1 2 1 1-1h1v-1l2-1v-2Zm-5-2v1h-2v-1l1-1 1 1Zm-4 3-2-2v-1l1-1v-2h2l-1 3v2Zm1-2v-1l1-2v1l-1 1Zm-19 3 2-2h1l2-3 1-1v-1h1v1l-1 1-1 1-1 2-2 1Zm22-8 1-1 1 2v3l-1-1v-2h-1Zm-6-1h2l-1 1v1l-2 1-1-1 1-2Zm8-3 1 1v3h-1l-1-2-1-1-1-1Zm-14-3h2l1 1v2l-1 1-1-1v-1l-1-1Zm2-16 2 1h1v3l1 1-1 3h-2v4l1 2 2-1 1 1 1 1 1-1 1 1-1 1 2 1v2l-3-2v-1l-2-1v1l-2-1-2 1-2-2 1-1v-1h-2l-1-5 1 1h1l-1-1 1-2-1-2 1-3Z",TZ:"m648 356 2 1 5 3 4 2v2l5 3-1 4v1l2 2v1l-1 1v3l1 4 3 2-2 1-2 1h-2v1l-2-1-1 2-2-1-1 1-3-1h-2l-1-1v-3l-1-1-4-1-2-1h-1l-2-2h-1l-1-1-1-3-2-2-1-2 1-1-1-2v-1h1l1-2 1-1 1-1-1-1 1-2v-2l-1-2h5Z",TH:"M848 291h1v1l1 1h1l1 2-1 2v3l3-3 2 1h1l1-1h2l2 3v2l1 2h1l1 1-1 1v3h-7l-1 2-1 1v2l1 1v1l1 1h-1l-3-3-1 1-2-1 1-2h-3v4l-1 2-1 2-1 2v1l1 2h1l1 2 1 1v2l1 1 1 1h1l2 2-1 1h-1v1l-1-2-2-1-1 1-1-2-2-3-2-1-1-1 1-2 1-3v-1l1-2 2-2-1-2-1-1v-3l-3-3v-1l1-1 1-3-1-2-2-2-1-3h1v-3l1-1h3l1-1 1-1Z",EG:"m649 255 2 6-1 1-1 4v1l-2-1-1-2-1-1-1-2v2l1 1 2 2v1l1 2v1l2 4 2 3 1 2v3l2 1 2 2h-36v-23l-1-3 1-2-1-2 1-1h2l5 1 2 1h1l2 1 2-1 2-1h1l1-1 3 2h5Z",TR:"M671 220h3l1-1 2 2v2l1 2h1l2 1-3 1 2 4-1 2h1l1 2-2 1v-1h-2l-2-1-2 1h-5l-2 1-2 1h-2l-1-1-3 1-2-1-2 4v-1l-1-1 2-1-1-1-1 1-3-1-3 3h-4l-1-2-2-1h-2l-1 2-2 1-2-1v-1l-2-1h-3l-1-3v-1l-1-1v-1l1-1-1-1-2-1v-2l2-1h5l3-2v-1h6v-1l3-1 3-1h4l2 1h2l2 2 5 1 3-1 3 1 2-1Zm-41-2 1 2 2 1-1 1-2-1-2 1v1h-4l2-3-1-1 1-1h2Z",NG:"m586 311 2 2v2l1 1v2l-2 1-1 2-1 2v1h-1v2l-1 1-2 3v1l-1 2-1 1-1-1-1-1h-1l-4 3v2l-1 2h-4l-2 1h-2l-1-1-1-3-1-1-2-1h-5v-8l1-1 1-2h1v-1l1-1-1-2v-4l1-1 1-2 2-1h2l2 1 2 1 3-1 1 1 1 1h3l2-1 2-1h2l3 1v-1l2-1Z",ZM:"m645 382 1 1 1 2-1 1v5h-1v2l-1 2 1 1h1l-5 1-4 2v2h-2l-2 1-1 2-2 1-3 3h-4l-2-1h-5l-4-3v-11h5l1-2v-5l1 1v1l2-1 1 1 2 1h3v-1l1 2 3 1 2 3 1-1 1 1v-4l-1 1h-1l-2-2v-1l1-3v-2l-1-2 2-2 5-1 1 1h1l2 2h1Z",MY:"m854 334 3 2 1 2v6l1 1 2 4h-2l-3-2-4-3v-1l-2-2v-2l-1-3v-1l-1-1 1-1 2 1 1 2v-1h1Zm47 6h-5l-1 1v3h-2l1 2h-1v1l-1 2h-3l-3-1-1 1-1 1h-4l-3-2v-1l1 1h4v-2l1-2h3l1-1 3-3v-1l2 2 1-1-1-1 1-1h2l-1-1 2-1 1-2 1-1h3v2h2l1 1 2 1v1h-3l1 2Z",FI:"m633 101-2 3 3 2 2 3-3 3 3 4-1 6 1 1v2l1 2-1 1 3 3 1 1v2l-5 4-6 5-6 1-6 2-3-1-1-1-3-1v-5l-1-2v-3l3-4 3-2 4-4 3-1v-3l-4-1-1-4 1-1-2-3 1-3-3-2-2-1-5-3 3-1 3 3 4-1 4 2 2-3 1-3 1-1 4-1 4 2Z",VN:"m872 287-2 1-2 1v2l-2 1-1 3 1 1 1 2v1l3 2 2 2 2 3 1 2 1 3v6l-2 2-1 1-3 1h-2v3l-4 1v1l-1 1-1-1v-2l1-2h-1l-1-1h1l2-1h2v-1l-1-1h2v-1l2-1 2-1-1-2 1-1-1-2 1-2v-1l-1-2v-1l-2-1-1-2-2-2-1-2h-1v-1l-1-1-2-1v-1h2l1-1-1-1v-1l-2-1h-3l-1-1 1-1-3-3 1-1 2 1 1-1h3l1-1h1l1-1 1 1h3v3l2 2Z",TM:"M746 234h-2l-1 1h-2l-1 3-2 1-2 1v1l-1 1-5-2v-3h-2l-1-1-2-1-1-1-1-1h-1l-3-1-1-1h-2l-1 1h-2l-1 1-1 1h-3v-5l-1-1-1-1 1-1v-1h-2v-1l1-2 2 1 3-1-1-1-1-1-1-2h-3l-1 1 2-2h3l2 1 2 3 1-1 4 1-1-3 2-1h1l1-2h1l3 2h1l1 1v2l1 1h4l3 5 4 3 5 2 3 1Z",EC:"m269 353 1 2v1l-2-2Zm48 0v2l-1 3-1 2-2 1-4 1-1 1v1l-2 4h-1l-1-1-2-1h-1v-1h1v-2l1-1 1-1h-3l-1-1v-4h1v-2l1-1 1-1v-1l1-1 2-1 2 1 2 1 1 1h3l1 1Z",MA:"m538 242 2 1v7l2 1-1 1h-3l-2 1-3 1v1l-1 2-2 1-1 2h-4v1h-1l-2 1-3 2v3h-14l1-1h3l1-1 1-1 2-1 3-4v-1l-1-1v-2l2-3v-1l2-2 5-3 2-3 1-3 2-1 1 2 2 1h4Z",MG:"m695 391 1 2 1 3v2l1 2-1 2-1-2-1 1 1 2-1 3v2l-3 8-1 3-1 3-1 5-1 3-2 1h-1l-2 1h-1l-1-1h-2l-1-1-1-2v-2l-1-2v-3l1-2 1-1 1-4 1-1-1-1v-2l-1-1v-3l1-2 1-1 1-1h2v-1h2l1-1 4-3v-1l3-3v-2l1-1Z",KE:"m672 341-2 2-1 2v11l2 2-2 1-1 2h-1l-1 2-1 4h-1l-5-3v-2l-4-2-5-3-2-1v-3l1-3 1-1 1-1v-1l-1-2-1-2v-1h-1v-2l4-4 1 1v1l1 2h3l3 2 5 1 1-2 2-1 2 1Z",IQ:"m681 235 1 4 1 1 2 2-2 1v2l-1 1 3 3v1h1l2 1 2 2-1 3h1v2l2 2-2-1h-1l-1 1-1 1-1 1-1 1-5-1-5-4-3-2-5-3-3-1-2-4 6-3h1l1-2v-6h2l1-2 2-1 2 1h2v1Z",PY:"m369 415 1 3-1 3 4 1 1-1 2 1v1l1 4h4l-1 4v1l-1 3-1 2h-1l-1 1h-1l-1 1-2-1-4-1 1-1v-1l1-1 1-2-1-1-2-1-3-1-1-2-4-1-2-1-2-3-1-1 1-3v-2l2-1v-2l5-1h3l3 2Z",GB:"m526.17 171.05-3.44-.14-2.31-1.22 2.72-2.84 3.3-.53 2 3.01-.42.95Zm9.41-18.98-2.66 2.45 1.78 1.1 4.02.03.9.9-2.65 5.09-1.6 1.02 3.13.75 1.49 1.42 1.1 3.36 1.88 1.13 1.4 2 2.32 4.36 3.33.87-.3 2.72-1.83 1.13-.81 1.7 2.2.09-1.37 1.75-2.29.65-5.21.06-3.12.52-2.6-.06-1.18 1.6-1.14-.64-3.54.57 2.3-2.1 1.19-1.65 3.19-.07-3.8-2.16-1.55.47-.57-1.5 2.14-.81 1.22-1.4-.4-2.77 3.17-.86.42-1.26-3.12-4.37-3.57-.32 1.26-2.38-1.6-2.16-1.1-.54.66-1.97-1.65-.39 1.14-2.7-.78-.9 1.46-3.5 1.88-1.2Z"};var g={tooltip:"_tooltip_1bizk_1",base:"_base_1bizk_6"};var z=({tooltips:i,translate:l,children:v})=>{let{data:r}=Z(),d=x(),o=Object.fromEntries(r.map(a=>[a.id??a.name,a]));return p.createElement(p.Fragment,null,p.createElement("svg",{id:d,viewBox:"0 0 1090 539",className:"w-auto h-full aspect-[1090/539] group",preserveAspectRatio:"none",transform:`translate(${l?.x??0}, ${l?.y??0}) scale(${1+(l?.scale??0)/85})`},Object.entries(n).map(([a,_],e)=>p.createElement("path",{key:e,d:_,fill:typeof o[a]?.fill=="string"?o[a].fill:"#2c2c2c",stroke:o[a]?.stroke??"white",strokeWidth:.5,"data-iso":a,className:"hover:stroke-white hover:stroke-[1.5]"}))),Object.entries(n).map(([a,_],e)=>{let{x:b,y:k}=f.center(_);return p.createElement(c,{key:e,target:{side:"bottom",alignment:"center"},style:{left:m.scale(b,1090,100)+"%",top:m.scale(k,539,100)+"%"},border:"rgb(45, 45, 45)",className:s("!bg-gradient-to-r !from-[#015dc6] !to-[#a00766] pointer-events-none",g.tooltip),"data-iso":a},p.createElement("div",null,i?.[a]?i[a]:a))}),v)};z.context=(i,l)=>({...i,attributes:{...i.attributes,className:s(i.attributes.className,"ratio-[1090/539]",g.base)}});export{z as Worldmap};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as s,b as a}from"../chunk-Y5BEPFEI.js";import"../chunk-JRRAKL7W.js";import"../chunk-DCUZK3HV.js";import{a as i}from"../chunk-27FBH32H.js";import{a as r,c as n}from"../chunk-LALBDKPZ.js";import o from"react";var l=({})=>{let t=n(),m=r(t);return o.createElement(a.Row,{className:"flex items-center relative pt-2 text-xs font-normal select-none",style:{gridColumn:m}},t.domain.x.map((e,u)=>o.createElement(o.Fragment,{key:u},o.createElement("div",{className:"absolute -translate-x-1/2 dark:text-white",style:{left:`${i.scale(e.coordinate,3e3,100)}%`}},typeof e.tick=="number"?e.tick.toFixed(2):e.tick.toString()),o.createElement("div",{className:"opacity-0"},typeof e.tick=="number"?e.tick.toFixed(2):e.tick.toString()))))};l.context=(t,m)=>({...t,layout:{...t.layout,rows:t.layout.rows+" min-content",columns:t.layout.columns},domain:{...t.domain,y:t.domain.y,x:s.x.ticks(t,m.ticks)}});export{l as XAxis};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as n,b as i}from"../chunk-Y5BEPFEI.js";import"../chunk-JRRAKL7W.js";import"../chunk-DCUZK3HV.js";import{a as r}from"../chunk-27FBH32H.js";import{c as e}from"../chunk-LALBDKPZ.js";import o from"react";var s=({})=>{let t=e();return o.createElement(i.Column,{className:"relative text-xs font-normal select-none dark:text-white"},t.domain.y.map((m,a)=>o.createElement(o.Fragment,{key:a},o.createElement("div",{className:"absolute -translate-y-1/2",style:{top:`${r.scale(m.coordinate,3e3,100)}%`}},typeof m.tick=="number"?m.tick.toFixed(2):m.tick.toString()),o.createElement("div",{className:"opacity-0"},typeof m.tick=="number"?m.tick.toFixed(2):m.tick.toString()))))};s.context=(t,m)=>({...t,layout:{...t.layout,rows:t.layout.rows,columns:"min-content "+t.layout.columns},domain:{...t.domain,x:t.domain.x,y:n.y.ticks(t,m.ticks)}});export{s as YAxis};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var o={isBetween:(r,e,n)=>r>=e&&r<=n,scale:(r,e,n)=>{let[b,t]=typeof e=="number"?[0,e]:e,[u,m]=typeof n=="number"?[0,n]:n;return(r-b)/(t-b)*(m-u)+u}};export{o as a};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var e=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var i=Object.prototype.hasOwnProperty;var k=(b,a)=>()=>(b&&(a=b(b=0)),a);var l=(b,a)=>{for(var d in a)e(b,d,{get:a[d],enumerable:!0})},j=(b,a,d,f)=>{if(a&&typeof a=="object"||typeof a=="function")for(let c of h(a))!i.call(b,c)&&c!==d&&e(b,c,{get:()=>a[c],enumerable:!(f=g(a,c))||f.enumerable});return b};var m=b=>j(e({},"__esModule",{value:!0}),b);export{k as a,l as b,m as c};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var i=(...n)=>n.map(e=>!e||typeof e=="string"?e:Object.entries(e).map(([r,t])=>t?r:"")).flat().filter(Boolean).join(" ");export{i as a};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as s,b as p,c as r}from"./chunk-5J6HXUF6.js";var n={};p(n,{GraphContextServer:()=>c,useGraphServer:()=>h});import{cache as x}from"react";var d,m,c,h,o=s(()=>{"use strict";[d,m]=x(()=>{let t={};return[()=>t,e=>t=e]})(),c=({value:t,children:e})=>(m(t),React.createElement(React.Fragment,null,e)),h=()=>d()});var i={};p(i,{GraphContextClient:()=>l,useGraphClient:()=>G});import{createContext as C,useContext as g}from"react";var u,l,G,a=s(()=>{"use strict";u=C(void 0),l=({value:t,children:e})=>React.createElement(u.Provider,{value:t},e),G=()=>{let t=g(u);if(!t)throw Error("Can only useGraph inside <Graph/>");return t}});var D=typeof window>"u"?(o(),r(n)).GraphContextServer:(a(),r(i)).GraphContextClient,w=typeof window>"u"?(o(),r(n)).useGraphServer:(a(),r(i)).useGraphClient;export{w as a};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as o}from"./chunk-27FBH32H.js";var m={xCoordinateFor:({domain:n,viewbox:i})=>{let f=Math.max(...n.x.map(({tick:t})=>+t)),u=Math.min(...n.x.map(({tick:t})=>+t));return t=>{if(typeof t=="string")return n.x.find(({tick:e})=>e===t)?.coordinate??i.x;if(f===u&&n.x.length===1)return n.x[0]?.coordinate??i.x;let r=+t;return r>f?i.x:r<u?0:n.x.reduce((e,{tick:s,coordinate:a},x)=>{if(e!==void 0)return e;let y=n.x[x+1],{coordinate:c,tick:d}=y;return o.isBetween(+r,+s,+d)?o.scale(r,[+s,+d],[a,c]):e},void 0)??0}},yCoordinateFor:({domain:n,viewbox:i})=>{let f=Math.max(...n.y.map(({tick:t})=>+t)),u=Math.min(...n.y.map(({tick:t})=>+t));return f===u?()=>n.y[0]?.coordinate??i.y:t=>+t>f?0:+t<u?i.y:typeof t=="string"?n.y.find(({tick:r})=>r===t)?.coordinate??i.y:n.y.reduce((r,{tick:e,coordinate:s},a)=>{if(r!==void 0||typeof e=="string")return r;let x=n.y[a+1];if(!x)return r;let{coordinate:y,tick:c}=x;return o.isBetween(+t,+e,+c)?o.scale(t,[+e,+c],[s,y]):r},void 0)??i.y}};export{m as a};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var g={trend:(e,n)=>{let r=e.length,c=e.reduce((a,M)=>a+M.x,0)/r,t=e.reduce((a,M)=>a+M.y,0)/r,{numerator:o,denominator:b}=e.reduce((a,M)=>(a.numerator+=(M.x-c)*(M.y-t),a.denominator+=(M.x-c)**2,a),{numerator:0,denominator:0}),m=o/b,p=t-m*c,s=e.map(a=>a.x),l=Math.min(...s),$=Math.max(...s),h=m*l+p,u=m*$+p,C=$-l,L=Math.max(...e.map(a=>a.y))-Math.min(...e.map(a=>a.y)),y=n.x/C,f=n.y/L,A=(l-l)*y,x=n.y-(h-Math.min(...e.map(a=>a.y)))*f,P=($-l)*y,X=n.y-(u-Math.min(...e.map(a=>a.y)))*f;return`M ${A} ${n.y-x} L ${P} ${n.y-X}`},annularArc:(e,n,r,c,t,o)=>{if(c-r>=360)return console.log("FULL"),`M ${e-o} ${n} A ${o} ${o} 0 1 1 ${e+o} ${n} A ${o} ${o} 1 1 1 ${e-o} ${n} M ${e-t} ${n} A ${t} ${t} 0 1 1 ${e+t} ${n} A ${t} ${t} 1 1 1 ${e-t} ${n} Z`;let[b,m]=[r%360,c%360],p=b>m?m+360:m,s=(C,L,y,f)=>[(C+Math.sin(f)*y).toFixed(2),(L-Math.cos(f)*y).toFixed(2)],[l,$]=[b/360*2*Math.PI,p/360*2*Math.PI],h=[s(e,n,t,l),s(e,n,o,l),s(e,n,o,$),s(e,n,t,$)],u=$-l>Math.PI?"1":"0";return`M ${h[0][0]} ${h[0][1]} L ${h[1][0]} ${h[1][1]} A ${o} ${o} 0 ${u} 1 ${h[2][0]} ${h[2][1]} L ${h[3][0]} ${h[3][1]} A ${t} ${t} 0 ${u} 0 ${h[0][0]} ${h[0][1]} Z`},polarToCartesian:(e,n,r,c)=>{let t=(c-90)*Math.PI/180;return{x:e+r*Math.cos(t),y:n+r*Math.sin(t)}},describeArc:(e,n,r,c,t)=>{if(t-c>=360)return g.circleArc(e,n,r);let o=g.polarToCartesian(e,n,r,t),b=g.polarToCartesian(e,n,r,c),m=t-c<=180?"0":"1";return["M",o.x,o.y,"A",r,r,0,m,0,b.x,b.y].join(" ")},circleArc:(e,n,r)=>{let c=360*Math.PI/180,t=r*Math.cos(c),o=-r*Math.sin(c);return`M ${e} ${n} m ${t}, ${o} a ${r}, ${r} 0 1,0 ${-2*t}, ${-2*o} a ${r}, ${r} 0 1,0 ${2*t}, ${2*o}`},parse:e=>{let n=[],r=/([a-zA-Z])|([-+]?\d*\.?\d+)/g,c,t=null;for(;(c=r.exec(e))!==null;){let p=c[0];if(isNaN(Number(p)))t=p,n.push({type:t,coords:[]});else{let s=parseFloat(p);t&&n[n.length-1].coords.push(s)}}let o=[],b=null,m=[0,0];for(let p of n){let{type:s,coords:l}=p;if(s.toLowerCase()==="m"||s.toLowerCase()==="l"){let $=0;for(;$<l.length;){let h=l[$],u=l[$+1]??0;s==="m"||s==="l"?m=[m[0]+h,m[1]+u]:m=[h,u],o.push({type:s.toLowerCase()==="m"&&$===0?"M":"L",coords:[...m]}),$+=2}s==="m"&&(p.type="l")}else if(s==="h")for(let $ of l)m[0]+=$,o.push({type:"L",coords:[...m]});else if(s==="v")for(let $ of l)m[1]+=$,o.push({type:"L",coords:[...m]});else(s==="z"||s==="Z")&&o.push({type:"Z",coords:[]});b=p}return o},center:e=>{let n=g.parse(e),r=n.reduce((t,{coords:o})=>t+(o?.[0]??0),0)/n.length,c=n.reduce((t,{coords:o})=>t+(o[1]??0),0)/n.length;return{x:r,y:c}}};export{g as a};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var a={isSegmentData:t=>t.length===0||"value"in t[0],isXYData:t=>t.length===0||"data"in t[0]&&"x"in(t[0].data[0]??{})};export{a};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var i=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var C=Object.getOwnPropertyNames;var g=Object.prototype.hasOwnProperty;var d=(t,e)=>()=>(t&&(e=t(t=0)),e);var m=(t,e)=>{for(var n in e)i(t,n,{get:e[n],enumerable:!0})},l=(t,e,n,x)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of C(e))!g.call(t,r)&&r!==n&&i(t,r,{get:()=>e[r],enumerable:!(x=h(e,r))||x.enumerable});return t};var o=t=>l(i({},"__esModule",{value:!0}),t);var a={};m(a,{GraphContextServer:()=>y,useGraphServer:()=>v});import{cache as G}from"react";var b,f,y,v,s=d(()=>{"use strict";[b,f]=G(()=>{let t={};return[()=>t,e=>t=e]})(),y=({value:t,children:e})=>(f(t),React.createElement(React.Fragment,null,e)),v=()=>b()});var p={};m(p,{GraphContextClient:()=>A,useGraphClient:()=>S});import{createContext as D,useContext as w}from"react";var c,A,S,u=d(()=>{"use strict";c=D(void 0),A=({value:t,children:e})=>React.createElement(c.Provider,{value:t},e),S=()=>{let t=w(c);if(!t)throw Error("Can only useGraph inside <Graph/>");return t}});var L=t=>t.layout.columns.split(" ").findIndex(e=>e.includes("[graph]"))+1,M=typeof window>"u"?(s(),o(a)).GraphContextServer:(u(),o(p)).GraphContextClient,P=typeof window>"u"?(s(),o(a)).useGraphServer:(u(),o(p)).useGraphClient;export{L as a,M as b,P as c};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as d}from"./chunk-JRRAKL7W.js";import{a as g}from"./chunk-DCUZK3HV.js";import{a as u}from"./chunk-27FBH32H.js";import{b as y}from"./chunk-LALBDKPZ.js";import l,{useId as M}from"react";import C from"react";var v={context:(a,s)=>C.Children.toArray(a).reduce((p,r)=>typeof r!="string"&&C.isValidElement(r)&&typeof r.type!="string"&&"context"in r.type&&typeof r.type.context=="function"?r.type.context(p,r.props):p,s)};var h={x:{ticks:({data:a,viewbox:s},{from:p="min",to:r="max",jumps:m=10}={from:"min",to:"max",jumps:10})=>{if(!d.isXYData(a)||a.length===0)return[];if(typeof a[0]?.data?.[0].x=="string"){let n=Array.from(new Set(a.flatMap(i=>i.data.map(x=>x.x)))),t=s.x/n.length;return n.map((i,x)=>({tick:i,coordinate:x*t+t/2}))}let e=Math.min(...a.flatMap(n=>n.data.map(t=>+t.x))),o=Math.max(...a.flatMap(n=>n.data.map(t=>+t.x)));if(e===o)return[{tick:e,coordinate:s.x}];if(typeof m=="string")return[];let c=(()=>{if(p==="min")return e;if(typeof p=="number")return p;let n=p.match(/(\+|-)/)?.[0],t=p.includes("%"),i=+p.replace(/[^0-9]/g,"");return n==="+"?t?e+e*i/100:e+i:n==="-"?t?e-e*i/100:e-i:e})(),f=(()=>{if(r==="max")return o;if(typeof r=="number")return r;let n=r.match(/(\+|-)/)?.[0],t=r.includes("%"),i=+r.replace(/[^0-9]/g,"");return n==="+"?t?o+o*i/100:o+i:n==="-"?t?o-o*i/100:o-i:o})();return Array.from({length:m},(n,t)=>({tick:u.scale(t,[0,m-1],[c,f]),coordinate:u.scale(t,[0,m-1],[0,s.x])}))}},y:{ticks:({data:a,viewbox:s},{from:p="min - 10%",to:r="max + 10%",jumps:m=5}={from:"min - 10%",to:"max + 10%",jumps:5})=>{if(!d.isXYData(a)||a.length===0)return[];let e=Math.min(...a.flatMap(n=>n.data.map(t=>+t.y))),o=Math.max(...a.flatMap(n=>n.data.map(t=>+t.y)));if(e===o)return[{tick:e,coordinate:s.y}];if(typeof m=="string")return[];let c=(()=>{if(p==="min")return e;if(typeof p=="number")return p;let n=p.match(/(\+|-)/)?.[0],t=p.includes("%"),i=+p.replace(/[^0-9]/g,"");return n==="+"?t?e+e*i/100:e+i:n==="-"?t?e-e*i/100:e-i:e})(),f=(()=>{if(r==="max")return o;if(typeof r=="number")return r;let n=r.match(/(\+|-)/)?.[0],t=r.includes("%"),i=+r.replace(/[^0-9]/g,"");return n==="+"?t?o+o*i/100:o+i:n==="-"?t?o-o*i/100:o-i:o})();return Array.from({length:m},(n,t)=>({tick:u.scale(t,[0,m-1],[c,f]),coordinate:u.scale(t,[0,m-1],[s.y,0])}))}}};var b=({data:a,gap:s,children:p,interactions:r})=>{let m=M(),e=3e3,o=3e3,c=v.context(p,{id:m,layout:{rows:"[graph] auto",columns:"[graph] auto"},viewbox:{x:e,y:o},data:a,gap:{top:s?.top??0,left:s?.left??0,right:s?.right??0,bottom:s?.bottom??0},attributes:{className:"relative grid h-full w-full"},domain:{x:h.x.ticks({data:a,viewbox:{x:e,y:o}}),y:h.y.ticks({data:a,viewbox:{x:e,y:o}})},interactions:{hovered:r?.hovered??[],pinned:r?.pinned??[]}});return l.createElement("div",{id:m,...c.attributes,style:{...c.attributes.style,gridTemplateColumns:c.layout.columns,gridTemplateRows:c.layout.rows,padding:`${c.gap.top}px ${c.gap.right}px ${c.gap.bottom}px ${c.gap.left}px`}},l.createElement(y,{value:c},p))};b.Row=({children:a,...s})=>l.createElement("div",{...s,className:g("col-span-full",s.className)},a);b.Column=({children:a,...s})=>l.createElement("div",{...s},a);export{h as a,b};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var l=[{fill:"#9844fc",color:"white"},{fill:"#d63cdd",color:"white"},{fill:"#ff5069",color:"white"},{fill:"#f86c44",color:"white"},{fill:"#fd9825",color:"white"},{fill:"#e7cd33",color:"black"},{fill:"#80e148",color:"black"},{fill:"#00d599",color:"white"},{fill:"#14ada4",color:"white"},{fill:"#00a7f1",color:"white"},{fill:"#696aff",color:"white"}],n={colorFor:(f,i)=>{if(i)switch(i){case 1:return[l[6].fill][f];case 2:return[l[6].fill,l[4].fill][f];case 3:return[l[0].fill,l[5].fill,l[7].fill][f];case 4:return[l[0].fill,l[3].fill,l[6].fill,l[8].fill][f];case 5:return[l[0].fill,l[3].fill,l[5].fill,l[6].fill,l[8].fill][f];case 6:return[l[0].fill,l[3].fill,l[5].fill,l[6].fill,l[7].fill,l[8].fill][f];case 7:return[l[0].fill,l[2].fill,l[3].fill,l[5].fill,l[6].fill,l[7].fill,l[8].fill][f];case 8:return[l[0].fill,l[2].fill,l[3].fill,l[4].fill,l[5].fill,l[6].fill,l[7].fill,l[8].fill][f];case 9:return[l[0].fill,l[1].fill,l[2].fill,l[3].fill,l[4].fill,l[5].fill,l[6].fill,l[7].fill,l[8].fill][f];case 10:return[l[0].fill,l[1].fill,l[2].fill,l[3].fill,l[4].fill,l[5].fill,l[6].fill,l[7].fill,l[8].fill,l[9].fill][f];default:return"#9844fc"}return l.map(({fill:r})=>r)[f]||"#9844fc"},between:(f,i,r)=>{if(r===1)return i;if(r===0)return f;let c=/rgb\((\d{1,3}), (\d{1,3}), (\d{1,3})\)/.exec(i)||[255,255,255],o=/rgb\((\d{1,3}), (\d{1,3}), (\d{1,3})\)/.exec(f)||[255,255,255],t=r*2/2,e=1-t,[u,a,s]=[Math.round(+c[1]*t+ +o[1]*e),Math.round(+c[2]*t+ +o[2]*e),Math.round(+c[3]*t+ +o[3]*e)];return`rgb(${u}, ${a}, ${s})`}};export{n as a};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { GraphContext } from "@/hooks/use-graph/use-graph";
|
|
2
|
+
import React from "react";
|
|
3
|
+
type From = "min" | `min - ${number}` | `min + ${number}` | `min + ${number}%` | `min - ${number}%` | number;
|
|
4
|
+
type To = "max" | `max - ${number}` | `max + ${number}` | `max + ${number}%` | `max - ${number}%` | number;
|
|
5
|
+
type interval = "days" | "months" | "years" | "hours" | "minutes" | "seconds" | "milliseconds";
|
|
6
|
+
type Jumps = `every ${number} ${interval}` | number;
|
|
7
|
+
type Props = {
|
|
8
|
+
ticks?: {
|
|
9
|
+
from?: From;
|
|
10
|
+
to?: To;
|
|
11
|
+
jumps?: Jumps;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
export declare const XAxis: {
|
|
15
|
+
({}: Props): React.JSX.Element;
|
|
16
|
+
context(ctx: GraphContext, props: Props): {
|
|
17
|
+
layout: {
|
|
18
|
+
rows: string;
|
|
19
|
+
columns: string;
|
|
20
|
+
};
|
|
21
|
+
domain: {
|
|
22
|
+
y: {
|
|
23
|
+
coordinate: number;
|
|
24
|
+
tick: string | number | Date;
|
|
25
|
+
}[];
|
|
26
|
+
x: {
|
|
27
|
+
tick: string | number | Date;
|
|
28
|
+
coordinate: number;
|
|
29
|
+
}[];
|
|
30
|
+
};
|
|
31
|
+
id: string;
|
|
32
|
+
attributes: React.HTMLAttributes<HTMLDivElement>;
|
|
33
|
+
gap: {
|
|
34
|
+
top: number;
|
|
35
|
+
right: number;
|
|
36
|
+
bottom: number;
|
|
37
|
+
left: number;
|
|
38
|
+
};
|
|
39
|
+
viewbox: {
|
|
40
|
+
x: number;
|
|
41
|
+
y: number;
|
|
42
|
+
};
|
|
43
|
+
data: import("@/hooks/use-graph/use-graph").XYDataset | import("@/hooks/use-graph/use-graph").SegmentDataset;
|
|
44
|
+
interactions: {
|
|
45
|
+
hovered: string[];
|
|
46
|
+
pinned: string[];
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
export {};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { GraphContext } from "@/hooks/use-graph/use-graph";
|
|
2
|
+
import React from "react";
|
|
3
|
+
type From = "min" | `min - ${number}` | `min + ${number}` | `min + ${number}%` | `min - ${number}%` | number;
|
|
4
|
+
type To = "max" | `max - ${number}` | `max + ${number}` | `max + ${number}%` | `max - ${number}%` | number;
|
|
5
|
+
type interval = "days" | "months" | "years" | "hours" | "minutes" | "seconds" | "milliseconds";
|
|
6
|
+
type Jumps = `every ${number} ${interval}` | number;
|
|
7
|
+
type Props = {
|
|
8
|
+
ticks?: {
|
|
9
|
+
from?: From;
|
|
10
|
+
to?: To;
|
|
11
|
+
jumps?: Jumps;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
export declare const YAxis: {
|
|
15
|
+
({}: Props): React.JSX.Element;
|
|
16
|
+
context(ctx: GraphContext, props: Props): {
|
|
17
|
+
layout: {
|
|
18
|
+
rows: string;
|
|
19
|
+
columns: string;
|
|
20
|
+
};
|
|
21
|
+
domain: {
|
|
22
|
+
x: {
|
|
23
|
+
coordinate: number;
|
|
24
|
+
tick: string | number | Date;
|
|
25
|
+
}[];
|
|
26
|
+
y: {
|
|
27
|
+
tick: number;
|
|
28
|
+
coordinate: number;
|
|
29
|
+
}[];
|
|
30
|
+
};
|
|
31
|
+
id: string;
|
|
32
|
+
attributes: React.HTMLAttributes<HTMLDivElement>;
|
|
33
|
+
gap: {
|
|
34
|
+
top: number;
|
|
35
|
+
right: number;
|
|
36
|
+
bottom: number;
|
|
37
|
+
left: number;
|
|
38
|
+
};
|
|
39
|
+
viewbox: {
|
|
40
|
+
x: number;
|
|
41
|
+
y: number;
|
|
42
|
+
};
|
|
43
|
+
data: import("@/hooks/use-graph/use-graph").XYDataset | import("@/hooks/use-graph/use-graph").SegmentDataset;
|
|
44
|
+
interactions: {
|
|
45
|
+
hovered: string[];
|
|
46
|
+
pinned: string[];
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React, { HTMLAttributes, ReactNode } from "react";
|
|
2
|
+
import { GraphContext } from "@/hooks/use-graph/use-graph";
|
|
3
|
+
type Props = {
|
|
4
|
+
data: GraphContext["data"];
|
|
5
|
+
gap?: {
|
|
6
|
+
top?: number;
|
|
7
|
+
right?: number;
|
|
8
|
+
bottom?: number;
|
|
9
|
+
left?: number;
|
|
10
|
+
};
|
|
11
|
+
interactions?: {
|
|
12
|
+
hovered?: string[];
|
|
13
|
+
pinned?: string[];
|
|
14
|
+
};
|
|
15
|
+
children: ReactNode;
|
|
16
|
+
};
|
|
17
|
+
export declare const Graph: {
|
|
18
|
+
({ data, gap, children, interactions }: Props): React.JSX.Element;
|
|
19
|
+
Row({ children, ...rest }: HTMLAttributes<HTMLDivElement>): React.JSX.Element;
|
|
20
|
+
Column({ children, ...rest }: HTMLAttributes<HTMLDivElement>): React.JSX.Element;
|
|
21
|
+
};
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface Props extends React.SVGAttributes<SVGSVGElement> {
|
|
3
|
+
trendline?: boolean;
|
|
4
|
+
border?: boolean;
|
|
5
|
+
horizontal?: boolean;
|
|
6
|
+
vertical?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare const GridLines: ({ border, horizontal, vertical, className }: Props) => React.JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { GraphContext } from "@/hooks/use-graph/use-graph";
|
|
2
|
+
import { ReactNode } from "react";
|
|
3
|
+
type Props = {
|
|
4
|
+
position?: "top" | "bottom" | "left" | "right";
|
|
5
|
+
alignment?: "center" | "left" | "right";
|
|
6
|
+
children?: ReactNode;
|
|
7
|
+
};
|
|
8
|
+
export declare const Legend: {
|
|
9
|
+
({ position, alignment }: Props): import("react").JSX.Element;
|
|
10
|
+
context(ctx: GraphContext, props: Props): {
|
|
11
|
+
layout: {
|
|
12
|
+
rows: string;
|
|
13
|
+
columns: string;
|
|
14
|
+
};
|
|
15
|
+
id: string;
|
|
16
|
+
attributes: import("react").HTMLAttributes<HTMLDivElement>;
|
|
17
|
+
gap: {
|
|
18
|
+
top: number;
|
|
19
|
+
right: number;
|
|
20
|
+
bottom: number;
|
|
21
|
+
left: number;
|
|
22
|
+
};
|
|
23
|
+
viewbox: {
|
|
24
|
+
x: number;
|
|
25
|
+
y: number;
|
|
26
|
+
};
|
|
27
|
+
data: import("@/hooks/use-graph/use-graph").XYDataset | import("@/hooks/use-graph/use-graph").SegmentDataset;
|
|
28
|
+
domain: {
|
|
29
|
+
x: Array<{
|
|
30
|
+
coordinate: number;
|
|
31
|
+
tick: string | number | Date;
|
|
32
|
+
}>;
|
|
33
|
+
y: Array<{
|
|
34
|
+
coordinate: number;
|
|
35
|
+
tick: string | number | Date;
|
|
36
|
+
}>;
|
|
37
|
+
};
|
|
38
|
+
interactions: {
|
|
39
|
+
hovered: string[];
|
|
40
|
+
pinned: string[];
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
export {};
|