rough-emoji-draw 0.2.0 → 0.2.1

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/README.en.md CHANGED
@@ -96,7 +96,12 @@ Load the IIFE bundle only; it automatically attaches `window.RoughEmoji`:
96
96
  </script>
97
97
  ```
98
98
 
99
- If the page includes the demo form DOM (`#rough-canvas`, `#emoji-form`, etc.), interaction and download handlers are wired up automatically.
99
+ If the page includes the demo form DOM (`#rough-canvas`, `#emoji-form`, etc.), load the root-level `rough-emoji-app.js` to wire up interaction and download handlers:
100
+
101
+ ```html
102
+ <script src="./dist/rough-emoji.js"></script>
103
+ <script src="./rough-emoji-app.js"></script>
104
+ ```
100
105
 
101
106
  ## API
102
107
 
@@ -118,7 +123,7 @@ Converts arbitrary input into a drawable flag emoji. Only valid flag emojis are
118
123
  import type { RoughEmojiApi } from "rough-emoji-draw";
119
124
  ```
120
125
 
121
- You can also import `RoughOptions`, `Point`, `RoughCanvasLike`, and the demo page helper `RoughEmojiApp` as needed.
126
+ You can also import `RoughOptions`, `Point`, and `RoughCanvasLike` as needed.
122
127
 
123
128
  ## Project Structure
124
129
 
@@ -128,11 +133,11 @@ You can also import `RoughOptions`, `Point`, `RoughCanvasLike`, and the demo pag
128
133
  │ ├── index.ts # npm library entry; exports API and types
129
134
  │ ├── browser.ts # browser IIFE entry; mounts window.RoughEmoji
130
135
  │ ├── rough-emoji.ts # core drawing logic
131
- │ ├── rough-emoji-app.ts # single-page demo DOM bindings
132
136
  │ ├── flag-utils.ts # flag emoji parsing and validation
133
137
  │ ├── render-context.ts # canvas context switching
134
138
  │ ├── constant.ts # static constants and template map
135
139
  │ └── types.ts # public type declarations
140
+ ├── rough-emoji-app.js # index.html demo DOM bindings (not in npm artifacts)
136
141
  ├── index.html # batch visual QA page
137
142
  ├── rslib.config.ts # Rslib multi-format build config
138
143
  ├── tsconfig.json # TypeScript config
package/README.md CHANGED
@@ -96,7 +96,12 @@ console.log(typeof RoughEmoji.draw); // "function"
96
96
  </script>
97
97
  ```
98
98
 
99
- 若页面包含演示表单 DOM(`#rough-canvas`、`#emoji-form` 等),还会自动绑定交互与下载逻辑。
99
+ 若页面包含演示表单 DOM(`#rough-canvas`、`#emoji-form` 等),可额外加载根目录下的 `rough-emoji-app.js` 绑定交互与下载逻辑:
100
+
101
+ ```html
102
+ <script src="./dist/rough-emoji.js"></script>
103
+ <script src="./rough-emoji-app.js"></script>
104
+ ```
100
105
 
101
106
  ## API
102
107
 
@@ -118,7 +123,7 @@ console.log(typeof RoughEmoji.draw); // "function"
118
123
  import type { RoughEmojiApi } from "rough-emoji-draw";
119
124
  ```
120
125
 
121
- 还可按需导入 `RoughOptions`、`Point`、`RoughCanvasLike`,以及演示页入口 `RoughEmojiApp`。
126
+ 还可按需导入 `RoughOptions`、`Point`、`RoughCanvasLike`。
122
127
 
123
128
  ## 项目结构
124
129
 
@@ -128,11 +133,11 @@ import type { RoughEmojiApi } from "rough-emoji-draw";
128
133
  │ ├── index.ts # npm 库入口,导出 API 与类型
129
134
  │ ├── browser.ts # 浏览器 IIFE 入口,挂载 window.RoughEmoji
130
135
  │ ├── rough-emoji.ts # 核心绘制逻辑
131
- │ ├── rough-emoji-app.ts # 单页演示 DOM 绑定
132
136
  │ ├── flag-utils.ts # 国旗 emoji 解析与校验
133
137
  │ ├── render-context.ts # Canvas 上下文切换
134
138
  │ ├── constant.ts # 静态常量与模板映射
135
139
  │ └── types.ts # 对外类型声明
140
+ ├── rough-emoji-app.js # index.html 演示页 DOM 绑定(不进入 npm 产物)
136
141
  ├── index.html # 批量视觉 QA 页面
137
142
  ├── rslib.config.ts # Rslib 多格式构建配置
138
143
  ├── tsconfig.json # TypeScript 配置
@@ -1,16 +1,5 @@
1
- /** 单页演示入口使用的 DOM 选择器,QA 页面不存在这些节点时只暴露全局 API。 */
2
- export declare const ELEMENT_SELECTORS: {
3
- readonly canvas: "#rough-canvas";
4
- readonly form: "#emoji-form";
5
- readonly input: "#emoji-input";
6
- readonly downloadButton: "#download-button";
7
- };
8
- /** 默认绘制国旗,供首次打开页面、prompt 默认值和非法输入回退共用。 */
1
+ /** 默认绘制国旗,供非法输入回退共用。 */
9
2
  export declare const DEFAULT_FLAG = "\uD83C\uDDE8\uD83C\uDDF3";
10
- /** 下载文件名前缀,最终文件名会追加当前绘制的国旗 emoji。 */
11
- export declare const DOWNLOAD_FILE_PREFIX = "rough-flag";
12
- /** 首次进入单页演示时提示用户输入国旗的文案。 */
13
- export declare const FLAG_PROMPT_MESSAGE = "\u8BF7\u8F93\u5165\u8981\u7ED8\u5236\u7684\u56FD\u65D7";
14
3
  /** 已有专门手写模板的国旗 emoji,避免绘制分支散落字面量。 */
15
4
  export declare const TEMPLATE_FLAGS: {
16
5
  readonly ad: "🇦🇩";
package/dist/index.cjs CHANGED
@@ -40,21 +40,12 @@ __webpack_require__.r(__webpack_exports__);
40
40
  // EXPORTS
41
41
  __webpack_require__.d(__webpack_exports__, {
42
42
  RoughEmoji: () => (/* reexport */ RoughEmoji),
43
- RoughEmojiApp: () => (/* reexport */ RoughEmojiApp),
44
43
  isFlagEmoji: () => (/* reexport */ isFlagEmoji),
45
44
  resolveFlag: () => (/* reexport */ resolveFlag)
46
45
  });
47
46
 
48
47
  ;// CONCATENATED MODULE: ./src/constant.ts
49
- /** 单页演示入口使用的 DOM 选择器,QA 页面不存在这些节点时只暴露全局 API。 */ const ELEMENT_SELECTORS = {
50
- canvas: "#rough-canvas",
51
- form: "#emoji-form",
52
- input: "#emoji-input",
53
- downloadButton: "#download-button"
54
- };
55
- /** 默认绘制国旗,供首次打开页面、prompt 默认值和非法输入回退共用。 */ const DEFAULT_FLAG = "🇨🇳";
56
- /** 下载文件名前缀,最终文件名会追加当前绘制的国旗 emoji。 */ const DOWNLOAD_FILE_PREFIX = "rough-flag";
57
- /** 首次进入单页演示时提示用户输入国旗的文案。 */ const FLAG_PROMPT_MESSAGE = "请输入要绘制的国旗";
48
+ /** 默认绘制国旗,供非法输入回退共用。 */ const DEFAULT_FLAG = "🇨🇳";
58
49
  /** 已有专门手写模板的国旗 emoji,避免绘制分支散落字面量。 */ const TEMPLATE_FLAGS = {
59
50
  ad: "🇦🇩",
60
51
  ae: "🇦🇪",
@@ -7490,67 +7481,15 @@ renderer = new RoughEmojiRenderer();
7490
7481
  return randomBetween(-amount, amount);
7491
7482
  }
7492
7483
 
7493
- ;// CONCATENATED MODULE: ./src/rough-emoji-app.ts
7494
-
7495
- /** 浏览器单页主流程:发现 DOM、初始化国旗、绑定表单与下载事件。 */ class RoughEmojiApp {
7496
- api;
7497
- doc;
7498
- win;
7499
- constructor(api, doc = document, win = window){
7500
- this.api = api;
7501
- this.doc = doc;
7502
- this.win = win;
7503
- }
7504
- /** 如果当前页面包含交互表单,就自动完成首次绘制和表单事件绑定。 */ mount() {
7505
- const elements = this.queryElements();
7506
- if (!elements) {
7507
- return;
7508
- }
7509
- const { canvas, form, input, downloadButton } = elements;
7510
- const params = new URLSearchParams(this.win.location.search);
7511
- const initialFlag = params.get("flag") || this.win.prompt(FLAG_PROMPT_MESSAGE, DEFAULT_FLAG) || DEFAULT_FLAG;
7512
- input.value = initialFlag;
7513
- this.api.draw(canvas, initialFlag);
7514
- form.addEventListener("submit", (event)=>{
7515
- event.preventDefault();
7516
- this.api.draw(canvas, input.value);
7517
- });
7518
- downloadButton.addEventListener("click", ()=>{
7519
- const link = this.doc.createElement("a");
7520
- const resolvedFlag = this.api.resolveFlag(input.value);
7521
- link.download = `${DOWNLOAD_FILE_PREFIX}-${resolvedFlag}.png`;
7522
- link.href = canvas.toDataURL("image/png");
7523
- link.click();
7524
- });
7525
- }
7526
- /** 查询单页演示 DOM;QA 页面没有这些节点时返回 null。 */ queryElements() {
7527
- const canvas = this.doc.querySelector(ELEMENT_SELECTORS.canvas);
7528
- const form = this.doc.querySelector(ELEMENT_SELECTORS.form);
7529
- const input = this.doc.querySelector(ELEMENT_SELECTORS.input);
7530
- const downloadButton = this.doc.querySelector(ELEMENT_SELECTORS.downloadButton);
7531
- if (!canvas || !form || !input || !downloadButton) {
7532
- return null;
7533
- }
7534
- return {
7535
- canvas,
7536
- form,
7537
- input,
7538
- downloadButton
7539
- };
7540
- }
7541
- }
7542
-
7543
7484
  ;// CONCATENATED MODULE: ./src/index.ts
7544
7485
 
7545
7486
 
7546
7487
 
7547
-
7548
7488
  exports.RoughEmoji = __webpack_exports__.RoughEmoji;
7549
- exports.RoughEmojiApp = __webpack_exports__.RoughEmojiApp;
7550
7489
  exports.isFlagEmoji = __webpack_exports__.isFlagEmoji;
7551
7490
  exports.resolveFlag = __webpack_exports__.resolveFlag;
7552
7491
  for(var __rspack_i in __webpack_exports__) {
7553
- if(["RoughEmoji","RoughEmojiApp","isFlagEmoji","resolveFlag"].indexOf(__rspack_i) === -1) {
7492
+ if(["RoughEmoji","isFlagEmoji","resolveFlag"].indexOf(__rspack_i) === -1) {
7554
7493
  exports[__rspack_i] = __webpack_exports__[__rspack_i];
7555
7494
  }
7556
7495
  }
package/dist/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
1
  export { RoughEmoji } from "./rough-emoji";
2
2
  export { isFlagEmoji, resolveFlag } from "./flag-utils";
3
- export { RoughEmojiApp } from "./rough-emoji-app";
4
3
  export type { RoughEmojiApi, RoughOptions, Point, RoughCanvasLike } from "./types";
package/dist/index.js CHANGED
@@ -1,14 +1,6 @@
1
1
 
2
2
 
3
- /** 单页演示入口使用的 DOM 选择器,QA 页面不存在这些节点时只暴露全局 API。 */ const ELEMENT_SELECTORS = {
4
- canvas: "#rough-canvas",
5
- form: "#emoji-form",
6
- input: "#emoji-input",
7
- downloadButton: "#download-button"
8
- };
9
- /** 默认绘制国旗,供首次打开页面、prompt 默认值和非法输入回退共用。 */ const DEFAULT_FLAG = "🇨🇳";
10
- /** 下载文件名前缀,最终文件名会追加当前绘制的国旗 emoji。 */ const DOWNLOAD_FILE_PREFIX = "rough-flag";
11
- /** 首次进入单页演示时提示用户输入国旗的文案。 */ const FLAG_PROMPT_MESSAGE = "请输入要绘制的国旗";
3
+ /** 默认绘制国旗,供非法输入回退共用。 */ const DEFAULT_FLAG = "🇨🇳";
12
4
  /** 已有专门手写模板的国旗 emoji,避免绘制分支散落字面量。 */ const TEMPLATE_FLAGS = {
13
5
  ad: "🇦🇩",
14
6
  ae: "🇦🇪",
@@ -7441,56 +7433,6 @@ renderer = new RoughEmojiRenderer();
7441
7433
  }
7442
7434
 
7443
7435
 
7444
- /** 浏览器单页主流程:发现 DOM、初始化国旗、绑定表单与下载事件。 */ class RoughEmojiApp {
7445
- api;
7446
- doc;
7447
- win;
7448
- constructor(api, doc = document, win = window){
7449
- this.api = api;
7450
- this.doc = doc;
7451
- this.win = win;
7452
- }
7453
- /** 如果当前页面包含交互表单,就自动完成首次绘制和表单事件绑定。 */ mount() {
7454
- const elements = this.queryElements();
7455
- if (!elements) {
7456
- return;
7457
- }
7458
- const { canvas, form, input, downloadButton } = elements;
7459
- const params = new URLSearchParams(this.win.location.search);
7460
- const initialFlag = params.get("flag") || this.win.prompt(FLAG_PROMPT_MESSAGE, DEFAULT_FLAG) || DEFAULT_FLAG;
7461
- input.value = initialFlag;
7462
- this.api.draw(canvas, initialFlag);
7463
- form.addEventListener("submit", (event)=>{
7464
- event.preventDefault();
7465
- this.api.draw(canvas, input.value);
7466
- });
7467
- downloadButton.addEventListener("click", ()=>{
7468
- const link = this.doc.createElement("a");
7469
- const resolvedFlag = this.api.resolveFlag(input.value);
7470
- link.download = `${DOWNLOAD_FILE_PREFIX}-${resolvedFlag}.png`;
7471
- link.href = canvas.toDataURL("image/png");
7472
- link.click();
7473
- });
7474
- }
7475
- /** 查询单页演示 DOM;QA 页面没有这些节点时返回 null。 */ queryElements() {
7476
- const canvas = this.doc.querySelector(ELEMENT_SELECTORS.canvas);
7477
- const form = this.doc.querySelector(ELEMENT_SELECTORS.form);
7478
- const input = this.doc.querySelector(ELEMENT_SELECTORS.input);
7479
- const downloadButton = this.doc.querySelector(ELEMENT_SELECTORS.downloadButton);
7480
- if (!canvas || !form || !input || !downloadButton) {
7481
- return null;
7482
- }
7483
- return {
7484
- canvas,
7485
- form,
7486
- input,
7487
- downloadButton
7488
- };
7489
- }
7490
- }
7491
-
7492
-
7493
-
7494
7436
 
7495
7437
 
7496
- export { RoughEmoji, RoughEmojiApp, isFlagEmoji, resolveFlag };
7438
+ export { RoughEmoji, isFlagEmoji, resolveFlag };
@@ -1 +1 @@
1
- (()=>{let t,e,i,h="🇨🇳",f="u">typeof globalThis&&"devicePixelRatio"in globalThis&&"number"==typeof globalThis.devicePixelRatio?globalThis.devicePixelRatio:1,c="#fbfdfa",l="rgba(36, 49, 44, 0.08)";function o(t){let e=String(t||"").trim();return a(e)?e:h}function a(t){let e=[...t].map(t=>t.codePointAt(0));return 2===e.length&&e.every(t=>void 0!==t&&t>=127462&&t<=127487)}function s(t,e,i){if(t&&t.length){let[h,f]=e,c=Math.PI/180*i,l=Math.cos(c),o=Math.sin(c);for(let e of t){let[t,i]=e;e[0]=(t-h)*l-(i-f)*o+h,e[1]=(t-h)*o+(i-f)*l+f}}}function n(t,e){var i;let h=e.hachureAngle+90,f=e.hachureGap;f<0&&(f=4*e.strokeWidth),f=Math.round(Math.max(f,.1));let c=1;return e.roughness>=1&&((null==(i=e.randomizer)?void 0:i.next())||Math.random())>.7&&(c=f),function(t,e,i,h=1){let f=Math.max(e,.1),c=t[0]&&t[0][0]&&"number"==typeof t[0][0]?[t]:t,l=[0,0];if(i)for(let t of c)s(t,l,i);let o=function(t,e,i){let h=[];for(let e of t){var f,c;let t=[...e];f=t[0],c=t[t.length-1],f[0]===c[0]&&f[1]===c[1]||t.push([t[0][0],t[0][1]]),t.length>2&&h.push(t)}let l=[];e=Math.max(e,.1);let o=[];for(let t of h)for(let e=0;e<t.length-1;e++){let i=t[e],h=t[e+1];if(i[1]!==h[1]){let t=Math.min(i[1],h[1]);o.push({ymin:t,ymax:Math.max(i[1],h[1]),x:t===i[1]?i[0]:h[0],islope:(h[0]-i[0])/(h[1]-i[1])})}}if(o.sort((t,e)=>t.ymin<e.ymin?-1:t.ymin>e.ymin?1:t.x<e.x?-1:t.x>e.x?1:t.ymax===e.ymax?0:(t.ymax-e.ymax)/Math.abs(t.ymax-e.ymax)),!o.length)return l;let a=[],s=o[0].ymin,n=0;for(;a.length||o.length;){if(o.length){let t=-1;for(let e=0;e<o.length&&!(o[e].ymin>s);e++)t=e;o.splice(0,t+1).forEach(t=>{a.push({s:s,edge:t})})}if((a=a.filter(t=>!(t.edge.ymax<=s))).sort((t,e)=>t.edge.x===e.edge.x?0:(t.edge.x-e.edge.x)/Math.abs(t.edge.x-e.edge.x)),(1!==i||n%e==0)&&a.length>1)for(let t=0;t<a.length;t+=2){let e=t+1;if(e>=a.length)break;let i=a[t].edge,h=a[e].edge;l.push([[Math.round(i.x),s],[Math.round(h.x),s]])}s+=i,a.forEach(t=>{t.edge.x=t.edge.x+i*t.edge.islope}),n++}return l}(c,f,h);if(i){let t;for(let t of c)s(t,l,-i);t=[],o.forEach(e=>t.push(...e)),s(t,l,-i)}return o}(t,f,h,c||1)}class d{constructor(t){this.helper=t}fillPolygons(t,e){return this._fillPolygons(t,e)}_fillPolygons(t,e){let i=n(t,e);return{type:"fillSketch",ops:this.renderLines(i,e)}}renderLines(t,e){let i=[];for(let h of t)i.push(...this.helper.doubleLineOps(h[0][0],h[0][1],h[1][0],h[1][1],e));return i}}function r(t){let e=t[0],i=t[1];return Math.sqrt(Math.pow(e[0]-i[0],2)+Math.pow(e[1]-i[1],2))}class g extends d{fillPolygons(t,e){let i=e.hachureGap;i<0&&(i=4*e.strokeWidth);let h=n(t,Object.assign({},e,{hachureGap:i=Math.max(i,.1)})),f=Math.PI/180*e.hachureAngle,c=[],l=.5*i*Math.cos(f),o=.5*i*Math.sin(f);for(let[t,e]of h)r([t,e])&&c.push([[t[0]-l,t[1]+o],[...e]],[[t[0]+l,t[1]-o],[...e]]);return{type:"fillSketch",ops:this.renderLines(c,e)}}}class u extends d{fillPolygons(t,e){let i=this._fillPolygons(t,e),h=Object.assign({},e,{hachureAngle:e.hachureAngle+90}),f=this._fillPolygons(t,h);return i.ops=i.ops.concat(f.ops),i}}class b{constructor(t){this.helper=t}fillPolygons(t,e){let i=n(t,e=Object.assign({},e,{hachureAngle:0}));return this.dotsOnLines(i,e)}dotsOnLines(t,e){let i=[],h=e.hachureGap;h<0&&(h=4*e.strokeWidth),h=Math.max(h,.1);let f=e.fillWeight;f<0&&(f=e.strokeWidth/2);let c=h/4;for(let l of t){let t=r(l),o=Math.ceil(t/h)-1,a=t-o*h,s=(l[0][0]+l[1][0])/2-h/4,n=Math.min(l[0][1],l[1][1]);for(let t=0;t<o;t++){let l=s-c+2*Math.random()*c,o=n+a+t*h-c+2*Math.random()*c,d=this.helper.ellipse(l,o,f,f,e);i.push(...d.ops)}}return{type:"fillSketch",ops:i}}}class y{constructor(t){this.helper=t}fillPolygons(t,e){let i=n(t,e);return{type:"fillSketch",ops:this.dashedLine(i,e)}}dashedLine(t,e){let i=e.dashOffset<0?e.hachureGap<0?4*e.strokeWidth:e.hachureGap:e.dashOffset,h=e.dashGap<0?e.hachureGap<0?4*e.strokeWidth:e.hachureGap:e.dashGap,f=[];return t.forEach(t=>{let c=r(t),l=Math.floor(c/(i+h)),o=(c+h-l*(i+h))/2,a=t[0],s=t[1];a[0]>s[0]&&(a=t[1],s=t[0]);let n=Math.atan((s[1]-a[1])/(s[0]-a[0]));for(let t=0;t<l;t++){let c=t*(i+h),l=c+i,s=[a[0]+c*Math.cos(n)+o*Math.cos(n),a[1]+c*Math.sin(n)+o*Math.sin(n)],d=[a[0]+l*Math.cos(n)+o*Math.cos(n),a[1]+l*Math.sin(n)+o*Math.sin(n)];f.push(...this.helper.doubleLineOps(s[0],s[1],d[0],d[1],e))}}),f}}class w{constructor(t){this.helper=t}fillPolygons(t,e){let i=e.hachureGap<0?4*e.strokeWidth:e.hachureGap,h=e.zigzagOffset<0?i:e.zigzagOffset,f=n(t,e=Object.assign({},e,{hachureGap:i+h}));return{type:"fillSketch",ops:this.zigzagLines(f,h,e)}}zigzagLines(t,e,i){let h=[];return t.forEach(t=>{let f=Math.round(r(t)/(2*e)),c=t[0],l=t[1];c[0]>l[0]&&(c=t[1],l=t[0]);let o=Math.atan((l[1]-c[1])/(l[0]-c[0]));for(let t=0;t<f;t++){let f=2*t*e,l=2*(t+1)*e,a=Math.sqrt(2*Math.pow(e,2)),s=[c[0]+f*Math.cos(o),c[1]+f*Math.sin(o)],n=[c[0]+l*Math.cos(o),c[1]+l*Math.sin(o)],d=[s[0]+a*Math.cos(o+Math.PI/4),s[1]+a*Math.sin(o+Math.PI/4)];h.push(...this.helper.doubleLineOps(s[0],s[1],d[0],d[1],i),...this.helper.doubleLineOps(d[0],d[1],n[0],n[1],i))}}),h}}let k={};class x{constructor(t){this.seed=t}next(){return this.seed?(0x80000000-1&(this.seed=Math.imul(48271,this.seed)))/0x80000000:Math.random()}}let p={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0};function W(t){let e=[],i=function(t){let e=[];for(;""!==t;)if(t.match(/^([ \t\r\n,]+)/))t=t.substr(RegExp.$1.length);else if(t.match(/^([aAcChHlLmMqQsStTvVzZ])/))e[e.length]={type:0,text:RegExp.$1},t=t.substr(RegExp.$1.length);else{if(!t.match(/^(([-+]?[0-9]+(\.[0-9]*)?|[-+]?\.[0-9]+)([eE][-+]?[0-9]+)?)/))return[];e[e.length]={type:1,text:`${parseFloat(RegExp.$1)}`},t=t.substr(RegExp.$1.length)}return e[e.length]={type:2,text:""},e}(t),h="BOD",f=0,c=i[0];for(;2!==c.type;){let l=0,o=[];if("BOD"===h){if("M"!==c.text&&"m"!==c.text)return W("M0,0"+t);f++,l=p[c.text],h=c.text}else 1===c.type?l=p[h]:(f++,l=p[c.text],h=c.text);if(!(f+l<i.length))throw Error("Path data ended short");for(let t=f;t<f+l;t++){let e=i[t];if(1!==e.type)throw Error("Param not a number: "+h+","+e.text);o[o.length]=+e.text}if("number"!=typeof p[h])throw Error("Bad segment: "+h);{let t={key:h,data:o};e.push(t),f+=l,c=i[f],"M"===h&&(h="L"),"m"===h&&(h="l")}}return e}function M(t){let e=0,i=0,h=0,f=0,c=[];for(let{key:l,data:o}of t)switch(l){case"M":c.push({key:"M",data:[...o]}),[e,i]=o,[h,f]=o;break;case"m":e+=o[0],i+=o[1],c.push({key:"M",data:[e,i]}),h=e,f=i;break;case"L":c.push({key:"L",data:[...o]}),[e,i]=o;break;case"l":e+=o[0],i+=o[1],c.push({key:"L",data:[e,i]});break;case"C":c.push({key:"C",data:[...o]}),e=o[4],i=o[5];break;case"c":{let t=o.map((t,h)=>h%2?t+i:t+e);c.push({key:"C",data:t}),e=t[4],i=t[5];break}case"Q":c.push({key:"Q",data:[...o]}),e=o[2],i=o[3];break;case"q":{let t=o.map((t,h)=>h%2?t+i:t+e);c.push({key:"Q",data:t}),e=t[2],i=t[3];break}case"A":c.push({key:"A",data:[...o]}),e=o[5],i=o[6];break;case"a":e+=o[5],i+=o[6],c.push({key:"A",data:[o[0],o[1],o[2],o[3],o[4],e,i]});break;case"H":c.push({key:"H",data:[...o]}),e=o[0];break;case"h":e+=o[0],c.push({key:"H",data:[e]});break;case"V":c.push({key:"V",data:[...o]}),i=o[0];break;case"v":i+=o[0],c.push({key:"V",data:[i]});break;case"S":c.push({key:"S",data:[...o]}),e=o[2],i=o[3];break;case"s":{let t=o.map((t,h)=>h%2?t+i:t+e);c.push({key:"S",data:t}),e=t[2],i=t[3];break}case"T":c.push({key:"T",data:[...o]}),e=o[0],i=o[1];break;case"t":e+=o[0],i+=o[1],c.push({key:"T",data:[e,i]});break;case"Z":case"z":c.push({key:"Z",data:[]}),e=h,i=f}return c}function m(t){let e=[],i="",h=0,f=0,c=0,l=0,o=0,a=0;for(let{key:s,data:n}of t){switch(s){case"M":e.push({key:"M",data:[...n]}),[h,f]=n,[c,l]=n;break;case"C":e.push({key:"C",data:[...n]}),h=n[4],f=n[5],o=n[2],a=n[3];break;case"L":e.push({key:"L",data:[...n]}),[h,f]=n;break;case"H":h=n[0],e.push({key:"L",data:[h,f]});break;case"V":f=n[0],e.push({key:"L",data:[h,f]});break;case"S":{let t=0,c=0;"C"===i||"S"===i?(t=h+(h-o),c=f+(f-a)):(t=h,c=f),e.push({key:"C",data:[t,c,...n]}),o=n[0],a=n[1],h=n[2],f=n[3];break}case"T":{let[t,c]=n,l=0,s=0;"Q"===i||"T"===i?(l=h+(h-o),s=f+(f-a)):(l=h,s=f);let d=h+2*(l-h)/3,r=f+2*(s-f)/3,g=t+2*(l-t)/3,u=c+2*(s-c)/3;e.push({key:"C",data:[d,r,g,u,t,c]}),o=l,a=s,h=t,f=c;break}case"Q":{let[t,i,c,l]=n,s=h+2*(t-h)/3,d=f+2*(i-f)/3,r=c+2*(t-c)/3,g=l+2*(i-l)/3;e.push({key:"C",data:[s,d,r,g,c,l]}),o=t,a=i,h=c,f=l;break}case"A":{let t=Math.abs(n[0]),i=Math.abs(n[1]),c=n[2],l=n[3],o=n[4],a=n[5],s=n[6];0===t||0===i?(e.push({key:"C",data:[h,f,a,s,a,s]}),h=a,f=s):(h!==a||f!==s)&&((function t(e,i,h,f,c,l,o,a,s,n){let d=Math.PI*o/180,r=[],g=0,u=0,b=0,y=0;if(n)[g,u,b,y]=n;else{[e,i]=S(e,i,-d),[h,f]=S(h,f,-d);let t=(e-h)/2,o=(i-f)/2,n=t*t/(c*c)+o*o/(l*l);n>1&&(c*=n=Math.sqrt(n),l*=n);let r=c*c,w=l*l,k=(a===s?-1:1)*Math.sqrt(Math.abs((r*w-r*o*o-w*t*t)/(r*o*o+w*t*t)));b=k*c*o/l+(e+h)/2,y=-(k*l)*t/c+(i+f)/2,g=Math.asin(parseFloat(((i-y)/l).toFixed(9))),u=Math.asin(parseFloat(((f-y)/l).toFixed(9))),e<b&&(g=Math.PI-g),h<b&&(u=Math.PI-u),g<0&&(g=2*Math.PI+g),u<0&&(u=2*Math.PI+u),s&&g>u&&(g-=2*Math.PI),!s&&u>g&&(u-=2*Math.PI)}let w=u-g;if(Math.abs(w)>120*Math.PI/180){let e=u,i=h,a=f;r=t(h=b+c*Math.cos(u=s&&u>g?g+120*Math.PI/180*1:g+-(120*Math.PI/180*1)),f=y+l*Math.sin(u),i,a,c,l,o,0,s,[u,e,b,y])}w=u-g;let k=Math.cos(g),x=Math.cos(u),p=Math.tan(w/4),W=4/3*c*p,M=4/3*l*p,m=[e,i],P=[e+W*Math.sin(g),i-M*k],v=[h+W*Math.sin(u),f-M*x],G=[h,f];if(P[0]=2*m[0]-P[0],P[1]=2*m[1]-P[1],n)return[P,v,G].concat(r);{r=[P,v,G].concat(r);let t=[];for(let e=0;e<r.length;e+=3){let i=S(r[e][0],r[e][1],d),h=S(r[e+1][0],r[e+1][1],d),f=S(r[e+2][0],r[e+2][1],d);t.push([i[0],i[1],h[0],h[1],f[0],f[1]])}return t}})(h,f,a,s,t,i,c,l,o).forEach(function(t){e.push({key:"C",data:t})}),h=a,f=s);break}case"Z":e.push({key:"Z",data:[]}),h=c,f=l}i=s}return e}function S(t,e,i){return[t*Math.cos(i)-e*Math.sin(i),t*Math.sin(i)+e*Math.cos(i)]}let P={randOffset:function(t,e){return z(t,e)},randOffsetWithRange:function(t,e,i){return D(t,e,i)},ellipse:function(t,e,i,h,f){let c=E(i,h,f);return O(t,e,f,c).opset},doubleLineOps:function(t,e,i,h,f){return A(t,e,i,h,f,!0)}};function v(t,e,i,h,f){return{type:"path",ops:A(t,e,i,h,f)}}function G(t,e,i){let h=(t||[]).length;if(h>2){let f=[];for(let e=0;e<h-1;e++)f.push(...A(t[e][0],t[e][1],t[e+1][0],t[e+1][1],i));return e&&f.push(...A(t[h-1][0],t[h-1][1],t[0][0],t[0][1],i)),{type:"path",ops:f}}return 2===h?v(t[0][0],t[0][1],t[1][0],t[1][1],i):{type:"path",ops:[]}}function I(t,e){if(t.length){let i="number"==typeof t[0][0]?[t]:t,h=j(i[0],+(1+.2*e.roughness),e),f=e.disableMultiStroke?[]:j(i[0],1.5*(1+.22*e.roughness),_(e));for(let t=1;t<i.length;t++){let c=i[t];if(c.length){let t=j(c,+(1+.2*e.roughness),e),i=e.disableMultiStroke?[]:j(c,1.5*(1+.22*e.roughness),_(e));for(let e of t)"move"!==e.op&&h.push(e);for(let t of i)"move"!==t.op&&f.push(t)}}return{type:"path",ops:h.concat(f)}}return{type:"path",ops:[]}}function E(t,e,i){let h=Math.sqrt(2*Math.PI*Math.sqrt((Math.pow(t/2,2)+Math.pow(e/2,2))/2)),f=2*Math.PI/Math.ceil(Math.max(i.curveStepCount,i.curveStepCount/Math.sqrt(200)*h)),c=Math.abs(t/2),l=Math.abs(e/2),o=1-i.curveFitting;return c+=z(c*o,i),l+=z(l*o,i),{increment:f,rx:c,ry:l}}function O(t,e,i,h){let[f,c]=Y(h.increment,t,e,h.rx,h.ry,1,h.increment*D(.1,D(.4,1,i),i),i),l=X(f,null,i);if(!i.disableMultiStroke&&0!==i.roughness){let[f]=Y(h.increment,t,e,h.rx,h.ry,1.5,0,i),c=X(f,null,i);l=l.concat(c)}return{estimatedPoints:c,opset:{type:"path",ops:l}}}function L(t,e,i,h,f,c,l,o,a){let s=Math.abs(i/2),n=Math.abs(h/2);s+=z(.01*s,a),n+=z(.01*n,a);let d=f,r=c;for(;d<0;)d+=2*Math.PI,r+=2*Math.PI;r-d>2*Math.PI&&(d=0,r=2*Math.PI);let g=Math.min(2*Math.PI/a.curveStepCount/2,(r-d)/2),u=F(g,t,e,s,n,d,r,1,a);if(!a.disableMultiStroke){let i=F(g,t,e,s,n,d,r,1.5,a);u.push(...i)}return l&&(o?u.push(...A(t,e,t+s*Math.cos(d),e+n*Math.sin(d),a),...A(t,e,t+s*Math.cos(r),e+n*Math.sin(r),a)):u.push({op:"lineTo",data:[t,e]},{op:"lineTo",data:[t+s*Math.cos(d),e+n*Math.sin(d)]})),{type:"path",ops:u}}function C(t,e){let i=m(M(W(t))),h=[],f=[0,0],c=[0,0];for(let{key:t,data:l}of i)switch(t){case"M":c=[l[0],l[1]],f=[l[0],l[1]];break;case"L":h.push(...A(c[0],c[1],l[0],l[1],e)),c=[l[0],l[1]];break;case"C":{let[t,i,f,o,a,s]=l;h.push(...function(t,e,i,h,f,c,l,o){let a=[],s=[o.maxRandomnessOffset||1,(o.maxRandomnessOffset||1)+.3],n=[0,0],d=o.disableMultiStroke?1:2,r=o.preserveVertices;for(let g=0;g<d;g++)0===g?a.push({op:"move",data:[l[0],l[1]]}):a.push({op:"move",data:[l[0]+(r?0:z(s[0],o)),l[1]+(r?0:z(s[0],o))]}),n=r?[f,c]:[f+z(s[g],o),c+z(s[g],o)],a.push({op:"bcurveTo",data:[t+z(s[g],o),e+z(s[g],o),i+z(s[g],o),h+z(s[g],o),n[0],n[1]]});return a}(t,i,f,o,a,s,c,e)),c=[a,s];break}case"Z":h.push(...A(c[0],c[1],f[0],f[1],e)),c=[f[0],f[1]]}return{type:"path",ops:h}}function T(t,e){let i=[];for(let h of t)if(h.length){let t=e.maxRandomnessOffset||0,f=h.length;if(f>2){i.push({op:"move",data:[h[0][0]+z(t,e),h[0][1]+z(t,e)]});for(let c=1;c<f;c++)i.push({op:"lineTo",data:[h[c][0]+z(t,e),h[c][1]+z(t,e)]})}}return{type:"fillPath",ops:i}}function $(t,e){return(function(t,e){let i=t.fillStyle||"hachure";if(!k[i])switch(i){case"zigzag":k[i]||(k[i]=new g(e));break;case"cross-hatch":k[i]||(k[i]=new u(e));break;case"dots":k[i]||(k[i]=new b(e));break;case"dashed":k[i]||(k[i]=new y(e));break;case"zigzag-line":k[i]||(k[i]=new w(e));break;default:k[i="hachure"]||(k[i]=new d(e))}return k[i]})(e,P).fillPolygons(t,e)}function _(t){let e=Object.assign({},t);return e.randomizer=void 0,t.seed&&(e.seed=t.seed+1),e}function R(t){return t.randomizer||(t.randomizer=new x(t.seed||0)),t.randomizer.next()}function D(t,e,i,h=1){return i.roughness*h*(R(i)*(e-t)+t)}function z(t,e,i=1){return D(-t,t,e,i)}function A(t,e,i,h,f,c=!1){let l=c?f.disableMultiStrokeFill:f.disableMultiStroke,o=q(t,e,i,h,f,!0,!1);if(l)return o;let a=q(t,e,i,h,f,!0,!0);return o.concat(a)}function q(t,e,i,h,f,c,l){let o=Math.pow(t-i,2)+Math.pow(e-h,2),a=Math.sqrt(o),s=1;s=a<200?1:a>500?.4:-.0016668*a+1.233334;let n=f.maxRandomnessOffset||0;n*n*100>o&&(n=a/10);let d=n/2,r=.2+.2*R(f),g=f.bowing*f.maxRandomnessOffset*(h-e)/200,u=f.bowing*f.maxRandomnessOffset*(t-i)/200;g=z(g,f,s),u=z(u,f,s);let b=[],y=f.preserveVertices;return c&&(l?b.push({op:"move",data:[t+(y?0:z(d,f,s)),e+(y?0:z(d,f,s))]}):b.push({op:"move",data:[t+(y?0:z(n,f,s)),e+(y?0:z(n,f,s))]})),l?b.push({op:"bcurveTo",data:[g+t+(i-t)*r+z(d,f,s),u+e+(h-e)*r+z(d,f,s),g+t+2*(i-t)*r+z(d,f,s),u+e+2*(h-e)*r+z(d,f,s),i+(y?0:z(d,f,s)),h+(y?0:z(d,f,s))]}):b.push({op:"bcurveTo",data:[g+t+(i-t)*r+z(n,f,s),u+e+(h-e)*r+z(n,f,s),g+t+2*(i-t)*r+z(n,f,s),u+e+2*(h-e)*r+z(n,f,s),i+(y?0:z(n,f,s)),h+(y?0:z(n,f,s))]}),b}function j(t,e,i){if(!t.length)return[];let h=[];h.push([t[0][0]+z(e,i),t[0][1]+z(e,i)]),h.push([t[0][0]+z(e,i),t[0][1]+z(e,i)]);for(let f=1;f<t.length;f++)h.push([t[f][0]+z(e,i),t[f][1]+z(e,i)]),f===t.length-1&&h.push([t[f][0]+z(e,i),t[f][1]+z(e,i)]);return X(h,null,i)}function X(t,e,i){let h=t.length,f=[];if(h>3){let c=[],l=1-i.curveTightness;f.push({op:"move",data:[t[1][0],t[1][1]]});for(let e=1;e+2<h;e++){let i=t[e];c[0]=[i[0],i[1]],c[1]=[i[0]+(l*t[e+1][0]-l*t[e-1][0])/6,i[1]+(l*t[e+1][1]-l*t[e-1][1])/6],c[2]=[t[e+1][0]+(l*t[e][0]-l*t[e+2][0])/6,t[e+1][1]+(l*t[e][1]-l*t[e+2][1])/6],c[3]=[t[e+1][0],t[e+1][1]],f.push({op:"bcurveTo",data:[c[1][0],c[1][1],c[2][0],c[2][1],c[3][0],c[3][1]]})}if(e&&2===e.length){let t=i.maxRandomnessOffset;f.push({op:"lineTo",data:[e[0]+z(t,i),e[1]+z(t,i)]})}}else 3===h?(f.push({op:"move",data:[t[1][0],t[1][1]]}),f.push({op:"bcurveTo",data:[t[1][0],t[1][1],t[2][0],t[2][1],t[2][0],t[2][1]]})):2===h&&f.push(...q(t[0][0],t[0][1],t[1][0],t[1][1],i,!0,!0));return f}function Y(t,e,i,h,f,c,l,o){let a=[],s=[];if(0===o.roughness){t/=4,s.push([e+h*Math.cos(-t),i+f*Math.sin(-t)]);for(let c=0;c<=2*Math.PI;c+=t){let t=[e+h*Math.cos(c),i+f*Math.sin(c)];a.push(t),s.push(t)}s.push([e+ +h,i+0*f]),s.push([e+h*Math.cos(t),i+f*Math.sin(t)])}else{let n=z(.5,o)-Math.PI/2;s.push([z(c,o)+e+.9*h*Math.cos(n-t),z(c,o)+i+.9*f*Math.sin(n-t)]);let d=2*Math.PI+n-.01;for(let l=n;l<d;l+=t){let t=[z(c,o)+e+h*Math.cos(l),z(c,o)+i+f*Math.sin(l)];a.push(t),s.push(t)}s.push([z(c,o)+e+h*Math.cos(n+2*Math.PI+.5*l),z(c,o)+i+f*Math.sin(n+2*Math.PI+.5*l)]),s.push([z(c,o)+e+.98*h*Math.cos(n+l),z(c,o)+i+.98*f*Math.sin(n+l)]),s.push([z(c,o)+e+.9*h*Math.cos(n+.5*l),z(c,o)+i+.9*f*Math.sin(n+.5*l)])}return[s,a]}function F(t,e,i,h,f,c,l,o,a){let s=c+z(.1,a),n=[];n.push([z(o,a)+e+.9*h*Math.cos(s-t),z(o,a)+i+.9*f*Math.sin(s-t)]);for(let c=s;c<=l;c+=t)n.push([z(o,a)+e+h*Math.cos(c),z(o,a)+i+f*Math.sin(c)]);return n.push([e+h*Math.cos(l),i+f*Math.sin(l)]),n.push([e+h*Math.cos(l),i+f*Math.sin(l)]),X(n,null,a)}function V(t,e=0){let i=t.length;if(i<3)throw Error("A curve must have at least three points.");let h=[];if(3===i)h.push([...t[0]],[...t[1]],[...t[2]],[...t[2]]);else{let i=[];i.push(t[0],t[0]);for(let e=1;e<t.length;e++)i.push(t[e]),e===t.length-1&&i.push(t[e]);let f=[],c=1-e;h.push([...i[0]]);for(let t=1;t+2<i.length;t++){let e=i[t];f[0]=[e[0],e[1]],f[1]=[e[0]+(c*i[t+1][0]-c*i[t-1][0])/6,e[1]+(c*i[t+1][1]-c*i[t-1][1])/6],f[2]=[i[t+1][0]+(c*i[t][0]-c*i[t+2][0])/6,i[t+1][1]+(c*i[t][1]-c*i[t+2][1])/6],f[3]=[i[t+1][0],i[t+1][1]],h.push(f[1],f[2],f[3])}}return h}function Z(t,e){return Math.pow(t[0]-e[0],2)+Math.pow(t[1]-e[1],2)}function Q(t,e,i){return[t[0]+(e[0]-t[0])*i,t[1]+(e[1]-t[1])*i]}function H(t,e,i,h,f){let c=f||[],l=t[e],o=t[i-1],a=0,s=1;for(let h=e+1;h<i-1;++h){let e=function(t,e,i){let h=Z(e,i);if(0===h)return Z(t,e);let f=((t[0]-e[0])*(i[0]-e[0])+(t[1]-e[1])*(i[1]-e[1]))/h;return Z(t,Q(e,i,f=Math.max(0,Math.min(1,f))))}(t[h],l,o);e>a&&(a=e,s=h)}return Math.sqrt(a)>h?(H(t,e,s+1,h,c),H(t,s,i,h,c)):(c.length||c.push(l),c.push(o)),c}function N(t,e=.15,i){let h=[],f=(t.length-1)/3;for(let i=0;i<f;i++)!function t(e,i,h,f){let c,l,o,a,s,n,d,r,g=f||[];if(c=e[i+0],l=e[i+1],o=e[i+2],a=e[i+3],s=3*l[0]-2*c[0]-a[0],s*=s,n=3*l[1]-2*c[1]-a[1],n*=n,d=3*o[0]-2*a[0]-c[0],d*=d,r=3*o[1]-2*a[1]-c[1],r*=r,s<d&&(s=d),n<r&&(n=r),s+n<h){let t=e[i+0];g.length?Math.sqrt(Z(g[g.length-1],t))>1&&g.push(t):g.push(t),g.push(e[i+3])}else{let f=e[i+0],c=e[i+1],l=e[i+2],o=e[i+3],a=Q(f,c,.5),s=Q(c,l,.5),n=Q(l,o,.5),d=Q(a,s,.5),r=Q(s,n,.5),u=Q(d,r,.5);t([f,a,d,u],0,h,g),t([u,r,n,o],0,h,g)}return g}(t,3*i,e,h);return i&&i>0?H(h,0,h.length,i):h}let B="none";class U{constructor(t){this.defaultOptions={maxRandomnessOffset:2,roughness:1,bowing:1,stroke:"#000",strokeWidth:1,curveTightness:0,curveFitting:.95,curveStepCount:9,fillStyle:"hachure",fillWeight:-1,hachureAngle:-41,hachureGap:-1,dashOffset:-1,dashGap:-1,zigzagOffset:-1,seed:0,disableMultiStroke:!1,disableMultiStrokeFill:!1,preserveVertices:!1,fillShapeRoughnessGain:.8},this.config=t||{},this.config.options&&(this.defaultOptions=this._o(this.config.options))}static newSeed(){return Math.floor(0x80000000*Math.random())}_o(t){return t?Object.assign({},this.defaultOptions,t):this.defaultOptions}_d(t,e,i){return{shape:t,sets:e||[],options:i||this.defaultOptions}}line(t,e,i,h,f){let c=this._o(f);return this._d("line",[v(t,e,i,h,c)],c)}rectangle(t,e,i,h,f){var c,l,o,a;let s=this._o(f),n=[],d=G([[c=t,l=e],[c+(o=i),l],[c+o,l+(a=h)],[c,l+a]],!0,s);if(s.fill){let f=[[t,e],[t+i,e],[t+i,e+h],[t,e+h]];"solid"===s.fillStyle?n.push(T([f],s)):n.push($([f],s))}return s.stroke!==B&&n.push(d),this._d("rectangle",n,s)}ellipse(t,e,i,h,f){let c=this._o(f),l=[],o=E(i,h,c),a=O(t,e,c,o);if(c.fill)if("solid"===c.fillStyle){let i=O(t,e,c,o).opset;i.type="fillPath",l.push(i)}else l.push($([a.estimatedPoints],c));return c.stroke!==B&&l.push(a.opset),this._d("ellipse",l,c)}circle(t,e,i,h){let f=this.ellipse(t,e,i,i,h);return f.shape="circle",f}linearPath(t,e){let i=this._o(e);return this._d("linearPath",[G(t,!1,i)],i)}arc(t,e,i,h,f,c,l=!1,o){let a=this._o(o),s=[],n=L(t,e,i,h,f,c,l,!0,a);if(l&&a.fill)if("solid"===a.fillStyle){let l=Object.assign({},a);l.disableMultiStroke=!0;let o=L(t,e,i,h,f,c,!0,!1,l);o.type="fillPath",s.push(o)}else s.push(function(t,e,i,h,f,c,l){let o=Math.abs(i/2),a=Math.abs(h/2);o+=z(.01*o,l),a+=z(.01*a,l);let s=f,n=c;for(;s<0;)s+=2*Math.PI,n+=2*Math.PI;n-s>2*Math.PI&&(s=0,n=2*Math.PI);let d=(n-s)/l.curveStepCount,r=[];for(let i=s;i<=n;i+=d)r.push([t+o*Math.cos(i),e+a*Math.sin(i)]);return r.push([t+o*Math.cos(n),e+a*Math.sin(n)]),r.push([t,e]),$([r],l)}(t,e,i,h,f,c,a));return a.stroke!==B&&s.push(n),this._d("arc",s,a)}curve(t,e){let i=this._o(e),h=[],f=I(t,i);if(i.fill&&i.fill!==B)if("solid"===i.fillStyle){let e=I(t,Object.assign(Object.assign({},i),{disableMultiStroke:!0,roughness:i.roughness?i.roughness+i.fillShapeRoughnessGain:0}));h.push({type:"fillPath",ops:this._mergedShape(e.ops)})}else{let e=[];if(t.length)for(let h of"number"==typeof t[0][0]?[t]:t)h.length<3?e.push(...h):3===h.length?e.push(...N(V([h[0],h[0],h[1],h[2]]),10,(1+i.roughness)/2)):e.push(...N(V(h),10,(1+i.roughness)/2));e.length&&h.push($([e],i))}return i.stroke!==B&&h.push(f),this._d("curve",h,i)}polygon(t,e){let i=this._o(e),h=[],f=G(t,!0,i);return i.fill&&("solid"===i.fillStyle?h.push(T([t],i)):h.push($([t],i))),i.stroke!==B&&h.push(f),this._d("polygon",h,i)}path(t,e){let i=this._o(e),h=[];if(!t)return this._d("path",h,i);t=(t||"").replace(/\n/g," ").replace(/(-\s)/g,"-").replace("/(ss)/g"," ");let f=i.fill&&"transparent"!==i.fill&&i.fill!==B,c=i.stroke!==B,l=!!(i.simplification&&i.simplification<1),o=function(t,e){let i=m(M(W(t))),h=[],f=[],c=[0,0],l=[],o=()=>{l.length>=4&&f.push(...N(l,1)),l=[]},a=()=>{o(),f.length&&(h.push(f),f=[])};for(let{key:t,data:e}of i)switch(t){case"M":a(),c=[e[0],e[1]],f.push(c);break;case"L":o(),f.push([e[0],e[1]]);break;case"C":if(!l.length){let t=f.length?f[f.length-1]:c;l.push([t[0],t[1]])}l.push([e[0],e[1]]),l.push([e[2],e[3]]),l.push([e[4],e[5]]);break;case"Z":o(),f.push([c[0],c[1]])}if(a(),!e)return h;let s=[];for(let t of h){let i=H(t,0,t.length,e);i.length&&s.push(i)}return s}(t,l?4-4*(i.simplification||1):(1+i.roughness)/2),a=C(t,i);if(f)if("solid"===i.fillStyle)if(1===o.length){let e=C(t,Object.assign(Object.assign({},i),{disableMultiStroke:!0,roughness:i.roughness?i.roughness+i.fillShapeRoughnessGain:0}));h.push({type:"fillPath",ops:this._mergedShape(e.ops)})}else h.push(T(o,i));else h.push($(o,i));return c&&(l?o.forEach(t=>{h.push(G(t,!1,i))}):h.push(a)),this._d("path",h,i)}opsToPath(t,e){let i="";for(let h of t.ops){let t="number"==typeof e&&e>=0?h.data.map(t=>+t.toFixed(e)):h.data;switch(h.op){case"move":i+=`M${t[0]} ${t[1]} `;break;case"bcurveTo":i+=`C${t[0]} ${t[1]}, ${t[2]} ${t[3]}, ${t[4]} ${t[5]} `;break;case"lineTo":i+=`L${t[0]} ${t[1]} `}}return i.trim()}toPaths(t){let e=t.sets||[],i=t.options||this.defaultOptions,h=[];for(let t of e){let e=null;switch(t.type){case"path":e={d:this.opsToPath(t),stroke:i.stroke,strokeWidth:i.strokeWidth,fill:B};break;case"fillPath":e={d:this.opsToPath(t),stroke:B,strokeWidth:0,fill:i.fill||B};break;case"fillSketch":e=this.fillSketch(t,i)}e&&h.push(e)}return h}fillSketch(t,e){let i=e.fillWeight;return i<0&&(i=e.strokeWidth/2),{d:this.opsToPath(t),stroke:e.fill||B,strokeWidth:i,fill:B}}_mergedShape(t){return t.filter((t,e)=>0===e||"move"!==t.op)}}class J{constructor(t,e){this.canvas=t,this.ctx=this.canvas.getContext("2d"),this.gen=new U(e)}draw(t){let e=t.sets||[],i=t.options||this.getDefaultOptions(),h=this.ctx,f=t.options.fixedDecimalPlaceDigits;for(let c of e)switch(c.type){case"path":h.save(),h.strokeStyle="none"===i.stroke?"transparent":i.stroke,h.lineWidth=i.strokeWidth,i.strokeLineDash&&h.setLineDash(i.strokeLineDash),i.strokeLineDashOffset&&(h.lineDashOffset=i.strokeLineDashOffset),this._drawToContext(h,c,f),h.restore();break;case"fillPath":{h.save(),h.fillStyle=i.fill||"";let e="curve"===t.shape||"polygon"===t.shape||"path"===t.shape?"evenodd":"nonzero";this._drawToContext(h,c,f,e),h.restore();break}case"fillSketch":this.fillSketch(h,c,i)}}fillSketch(t,e,i){let h=i.fillWeight;h<0&&(h=i.strokeWidth/2),t.save(),i.fillLineDash&&t.setLineDash(i.fillLineDash),i.fillLineDashOffset&&(t.lineDashOffset=i.fillLineDashOffset),t.strokeStyle=i.fill||"",t.lineWidth=h,this._drawToContext(t,e,i.fixedDecimalPlaceDigits),t.restore()}_drawToContext(t,e,i,h="nonzero"){for(let h of(t.beginPath(),e.ops)){let e="number"==typeof i&&i>=0?h.data.map(t=>+t.toFixed(i)):h.data;switch(h.op){case"move":t.moveTo(e[0],e[1]);break;case"bcurveTo":t.bezierCurveTo(e[0],e[1],e[2],e[3],e[4],e[5]);break;case"lineTo":t.lineTo(e[0],e[1])}}"fillPath"===e.type?t.fill(h):t.stroke()}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}line(t,e,i,h,f){let c=this.gen.line(t,e,i,h,f);return this.draw(c),c}rectangle(t,e,i,h,f){let c=this.gen.rectangle(t,e,i,h,f);return this.draw(c),c}ellipse(t,e,i,h,f){let c=this.gen.ellipse(t,e,i,h,f);return this.draw(c),c}circle(t,e,i,h){let f=this.gen.circle(t,e,i,h);return this.draw(f),f}linearPath(t,e){let i=this.gen.linearPath(t,e);return this.draw(i),i}polygon(t,e){let i=this.gen.polygon(t,e);return this.draw(i),i}arc(t,e,i,h,f,c,l=!1,o){let a=this.gen.arc(t,e,i,h,f,c,l,o);return this.draw(a),a}curve(t,e){let i=this.gen.curve(t,e);return this.draw(i),i}path(t,e){let i=this.gen.path(t,e);return this.draw(i),i}}let K=0,tt={draw(h,f){!function(i,h){let f=t,c=e,l=K,o=i.getContext("2d",{willReadFrequently:!0});if(!o)throw Error("Canvas 2D context is not available.");t=o,e=new J(i,void 0),K=i.width;try{h()}finally{t=f,e=c,K=l}}(h,()=>i.draw(o(f)))},isFlagEmoji:a,resolveFlag:o};function te(){let t=fa(118,174,486,342);e.polygon(t,{stroke:"#8c1f23",strokeWidth:3.2,fill:"#de2f36",fillStyle:"solid",roughness:2.4,bowing:1.4}),e.polygon(t,{stroke:"#b7252c",strokeWidth:1.2,fill:"#d92831",fillStyle:"hachure",hachureAngle:-8,hachureGap:14,fillWeight:1.1,roughness:2.1,bowing:1.1}),fs(132,196,458,292,"#981d25"),fn(210,262,54,-18),fn(294,214,20,17),fn(330,266,20,38),fn(330,324,20,8),fn(290,374,20,24),e.polygon(fa(118,174,486,342),{stroke:"#28332e",strokeWidth:2.1,fill:"transparent",roughness:2.8,bowing:1.6})}function ti(){let t=fa(128,172,464,344);e.polygon(t,{stroke:"#d6ded7",strokeWidth:2.4,fill:"#fbfdfa",fillStyle:"hachure",hachureAngle:-10,hachureGap:17,fillWeight:.45,roughness:2.1,bowing:1.2}),e.circle(360,344,166,{stroke:"#9f2936",strokeWidth:2.4,fill:"#cf3346",fillStyle:"solid",roughness:2.4,bowing:1.3}),e.circle(360,344,155,{stroke:"rgba(159, 41, 54, 0.48)",strokeWidth:1.1,fill:"#cf3346",fillStyle:"hachure",hachureAngle:-12,hachureGap:13,fillWeight:.9,roughness:2.1}),fs(150,198,420,280,"#cbd8ce"),e.polygon(t,{stroke:"#28332e",strokeWidth:1.6,fill:"transparent",roughness:2.5,bowing:1.5})}function th(){let t={x:118,y:174,width:486,height:342},i=fa(t.x,t.y,t.width,t.height);e.polygon(fw(i,8,10),{stroke:"transparent",fill:l,fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon(i,{stroke:"#b9c4c0",strokeWidth:2.4,fill:"#fbfdfa",fillStyle:"solid",roughness:2.4,bowing:1.4});for(let e=0;e<13;e+=1)e%2==0&&fc(t,0,e/13,1,(e+1)/13,"#c83c4a","#8f2633");fc(t,0,0,.43,7/13,"#314d7c","#20375e"),function(t){for(let e=0;e<9;e+=1){let i=e%2==0?6:5,h=.5*(e%2!=0);for(let f=0;f<i;f+=1){let i=.055+(f+h)/5.5*.34,c=.055+e/8*.435;fn(fb(i,c,t),fy(i,c,t),6.4,-18+2*e)}}}(t),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8d2d37"),e.polygon(fa(t.x,t.y,t.width,t.height),{stroke:"#28332e",strokeWidth:2,fill:"transparent",roughness:2.8,bowing:1.6})}function tf(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#243f78","#1b2c56"),fc(t,0,0,1,1,"#243f78","#1b2c56"),fi(t),fd(fb(.24,.72,t),fy(.24,.72,t),24,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.72)"}),[[.74,.28,13,4],[.84,.44,11,-12],[.72,.58,13,10],[.62,.45,12,-8],[.78,.72,8,18]].forEach(([e,i,h,f])=>{fd(fb(e,i,t),fy(e,i,t),h,f,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.68)"})}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1a315e"),ft(t)}function tc(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/6,"#c83c4a","#8f2633"),fc(t,0,1/6,1,2/6,"#fbfdfa","#c7d1cc"),fc(t,0,2/6,1,4/6,"#273f78","#1b2c56"),fc(t,0,4/6,1,5/6,"#fbfdfa","#c7d1cc"),fc(t,0,5/6,1,1,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#7f2c42"),ft(t)}function tl(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1/3,1,"#2d4e8c","#1e3768"),fc(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fc(t,2/3,0,1,1,"#cf3d45","#912936"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8b334e"),ft(t)}function to(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1/3,1,"#2f8e5c","#1f6540"),fc(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fc(t,2/3,0,1,1,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f6848"),ft(t)}function ta(){var t;let i,h,f,c=h6(),l=fa(c.x,c.y,c.width,c.height);h7(l),h9(l,"#f3c735","#b78618"),fc(c,0,0,1,.25,"#c83a3e","#8f2633"),fc(c,0,.25,1,.75,"#f3c735","#b78618"),fc(c,0,.75,1,1,"#c83a3e","#8f2633"),i=fb(.31,.5,t=c),h=fy(.5,.5,t),f=[[i-22+fp(1.4),h-29+fp(1.4)],[i+22+fp(1.4),h-29+fp(1.4)],[i+18.48+fp(1.4),h+12.76+fp(1.4)],[i+fp(1.2),h+29+fp(1.4)],[i-18.48+fp(1.4),h+12.76+fp(1.4)]],e.polygon(f,{stroke:"#6f2a2b",strokeWidth:1.25,fill:"#d8483f",fillStyle:"solid",roughness:2.1,bowing:1.2}),e.rectangle(i-14+fp(1),h-18+fp(1),28,25,{stroke:"#a77613",strokeWidth:.9,fill:"#f4d24a",fillStyle:"hachure",hachureGap:6,fillWeight:.75,roughness:1.9,bowing:1.1}),e.circle(i,h-42,19,{stroke:"#8b6418",strokeWidth:1,fill:"#f4d24a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fn(i,h-44,7,0),e.line(i-24,h-33,i+24,h-33+fp(2),{stroke:"#8b6418",strokeWidth:1.05,roughness:2.3,bowing:1.6}),fs(c.x+14,c.y+22,c.width-36,c.height-50,"#9c5524"),ft(c)}function ts(){var t;let i,h,f=h6(),c=fa(f.x,f.y,f.width,f.height);h7(c),h9(c,"#fbfdfa","#c7d1cc"),fc(f,0,0,.5,1,"#f4cf34","#a98218"),fc(f,.5,0,1,1,"#fbfdfa","#c7d1cc"),i=fb(.74,.53,t=f),h=fy(.53,.53,t),e.line(i-44,h+42,i+36,h-46,{stroke:"#b78716",strokeWidth:4.2,roughness:2.5,bowing:1.8}),e.line(i+44,h+42,i-36,h-46,{stroke:"#a7adb1",strokeWidth:4.2,roughness:2.5,bowing:1.8}),e.circle(i-36,h-42,27,{stroke:"#8b6418",strokeWidth:1.5,fill:"#f4d24a",fillStyle:"hachure",hachureGap:7,fillWeight:.85,roughness:2.1,bowing:1.2}),e.circle(i+36,h-42,27,{stroke:"#7d858a",strokeWidth:1.5,fill:"#dce2e0",fillStyle:"hachure",hachureGap:7,fillWeight:.85,roughness:2.1,bowing:1.2}),e.circle(i,h-58,34,{stroke:"#a98218",strokeWidth:1.5,fill:"#f7e1a0",fillStyle:"solid",roughness:2.2,bowing:1.3}),e.rectangle(i-24+fp(1),h-72+fp(1),48,24,{stroke:"#a98218",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"hachure",hachureGap:6,fillWeight:.7,roughness:2,bowing:1.2}),e.line(i-34,h-19,i+34,h-19+fp(2),{stroke:"#c23d45",strokeWidth:3.2,roughness:2.4,bowing:1.5}),fs(f.x+14,f.y+22,f.width-36,f.height-50,"#b49835"),ft(f)}function tn(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,0,0,1/3,1,"#253f78","#1b2c56"),fc(t,1/3,0,2/3,1,"#f0c83a","#a98218"),fc(t,2/3,0,1,1,"#c83c4a","#8f2633"),fl(t,.5,.5,"#fbfdfa","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#705b4a"),ft(t)}function td(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,.25,1,"#c83c4a","#8f2633"),fc(t,.25,0,1,1/3,"#15945f","#0f6646"),fc(t,.25,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,.25,2/3,1,1,"#262d2b","#111615"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b3538"),ft(t)}function tr(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.5,.5,t),f=fy(.5,.5,t);h7(i),h9(i,"#c83c4a","#8f2633"),fc(t,0,0,1/3,1,"#262d2b","#111615"),fc(t,1/3,0,2/3,1,"#c83c4a","#8f2633"),fc(t,2/3,0,1,1,"#249064","#176847"),e.circle(h,f,68,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"rgba(251, 253, 250, 0.86)",fillStyle:"hachure",hachureGap:7,fillWeight:.7,roughness:2.2,bowing:1.2}),e.rectangle(h-22+fp(1),f-16+fp(1),44,38,{stroke:"#6f5c38",strokeWidth:1,fill:"transparent",roughness:2.1,bowing:1.2}),e.line(h-28,f+30,h+28,f+30+fp(2),{stroke:"#6f5c38",strokeWidth:1.2,roughness:2.3,bowing:1.5}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b3538"),ft(t)}function tg(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=[fb(0,0,t),fy(0,0,t)],f=[fb(1,0,t),fy(1,0,t)],c=[fb(.5,1,t),fy(.5,1,t)];h7(i),h9(i,"#c83c4a","#8f2633"),e.polygon([h,f,c],{stroke:"#111615",strokeWidth:1.2,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),fc(t,.28,.48,.72,.64,"#2f5fa0","#203a74"),e.polygon([[fb(.28,.64,t),fy(.28,.64,t)],[fb(.72,.64,t),fy(.72,.64,t)],c],{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),fn(fb(.5,.36,t),fy(.5,.36,t),36,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function tu(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.74,.54,t),f=fy(.54,.54,t);h7(i),h9(i,"#243f78","#1b2c56"),fc(t,0,0,1,1,"#243f78","#1b2c56"),fi(t),fl(t,.74,.54,"#fbfdfa","#2f6fa4"),e.line(h-22,f+4,h+24,f+4+fp(2),{stroke:"#2f6fa4",strokeWidth:2,roughness:2.2,bowing:1.5}),fd(h,f-20,9,-18,{stroke:"#b68b12",fill:"#ffd84c",hatch:"#ffec62"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function tb(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.5,.5,t),f=fy(.5,.5,t);h7(i),h9(i,"#c83c4a","#8f2633"),e.polygon([[h-62,f-42],[h-18,f-18],[h,f-58],[h+18,f-18],[h+62,f-42],[h+28,f+14],[h+44,f+64],[h,f+35],[h-44,f+64],[h-28,f+14]],{stroke:"#111615",strokeWidth:2,fill:"#262d2b",fillStyle:"solid",roughness:2.3,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function ty(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#d23b43","#912936"),fc(t,0,1/3,1,2/3,"#2f4f9d","#203a74"),fc(t,0,2/3,1,1,"#f0a330","#a96f1f"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#734268"),ft(t)}function tw(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.52,.5,t),f=fy(.52,.5,t);h7(i),h9(i,"#c83c4a","#8f2633"),fc(t,0,0,1,.5,"#c83c4a","#8f2633"),fc(t,0,.5,1,1,"#262d2b","#111615"),e.circle(h,f+4,92,{stroke:"#d7a51d",strokeWidth:6,fill:"transparent",roughness:2.4,bowing:1.4}),e.line(h-58,f+36,h+70,f-38,{stroke:"#d7a51d",strokeWidth:7,roughness:2.5,bowing:1.6}),fn(h-20,f-24,22,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function tk(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#75a9d8","#477aa5"),e.polygon([[fb(.28,.58,t),fy(.28,.58,t)],[fb(.38,.42,t),fy(.38,.42,t)],[fb(.53,.36,t),fy(.53,.36,t)],[fb(.67,.46,t),fy(.67,.46,t)],[fb(.75,.6,t),fy(.75,.6,t)],[fb(.58,.7,t),fy(.58,.7,t)],[fb(.45,.66,t),fy(.45,.66,t)],[fb(.36,.72,t),fy(.36,.72,t)]],{stroke:"#c7d1cc",strokeWidth:1.4,fill:"#fbfdfa",fillStyle:"hachure",hachureGap:10,fillWeight:.58,roughness:2.3,bowing:1.3}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#477aa5"),ft(t)}function tx(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#75a9d8","#477aa5"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#75a9d8","#477aa5"),e.circle(fb(.5,.5,t),fy(.5,.5,t),43,{stroke:"#b68b12",strokeWidth:1.2,fill:"#ffd84c",fillStyle:"hachure",hachureGap:7,fillWeight:.8,roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#477aa5"),ft(t)}function tp(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=[fb(1,.5,t),fy(1,.5,t)],f=fb(.72,.5,t),c=fy(.72,.5,t);h7(i),h9(i,"#243f78","#1b2c56"),e.polygon([[fb(0,0,t),fy(0,0,t)],h,[fb(0,1,t),fy(0,1,t)]],{stroke:"#8f2633",strokeWidth:9,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.line(f-30,c,f+36,c-18+fp(3),{stroke:"#8b6418",strokeWidth:4,roughness:2.4,bowing:1.6}),fd(f-8,c-20,14,-18,{stroke:"#8b6418",fill:"#f4d24a",hatch:"#ffec62"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function tW(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#c83c4a","#8f2633"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function tM(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#3d9fd3","#2c6f9b"),fc(t,0,.62,1,.68,"#f0c83a","#a98218"),fc(t,0,.72,1,.78,"#f0c83a","#a98218"),fd(fb(.2,.24,t),fy(.2,.24,t),29,-18,{stroke:"#fbfdfa",fill:"#c83c4a",hatch:"rgba(251, 253, 250, 0.52)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),ft(t)}function tm(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#253f78","#1b2c56"),fc(t,.27,0,.45,1,"#f0c83a","#a98218"),fc(t,0,.38,1,.62,"#f0c83a","#a98218"),fc(t,.32,0,.4,1,"#c83c4a","#8f2633"),fc(t,0,.44,1,.56,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function tS(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#c83c4a","#8f2633"),fc(t,0,0,1,1/3,"#3d9fd3","#2c6f9b"),fc(t,0,1/3,1,2/3,"#c83c4a","#8f2633"),fc(t,0,2/3,1,1,"#249064","#176847"),e.circle(fb(.48,.5,t),fy(.48,.5,t),.24*t.height,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fb(.52,.5,t),fy(.52,.5,t),.2*t.height,{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.3,bowing:1.2}),fd(fb(.59,.5,t),fy(.59,.5,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#756b4d"),ft(t)}function tP(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#253f78","#1b2c56"),e.polygon([[fb(.34,0,t),fy(.34,0,t)],[fb(.78,0,t),fy(.78,0,t)],[fb(.78,1,t),fy(.78,1,t)]],{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2});for(let e=0;e<8;e+=1)fd(fb(.36+.055*e,.08+.115*e,t),fy(.36+.055*e,.08+.115*e,t),10,-18+4*e,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"});fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function tv(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.5,.5,t),f=fy(.5,.5,t);h7(i),h9(i,"#f0c83a","#a98218"),fc(t,0,0,1/3,1,"#253f78","#1b2c56"),fc(t,1/3,0,2/3,1,"#f0c83a","#a98218"),fc(t,2/3,0,1,1,"#253f78","#1b2c56"),e.line(h,f-48,h,f+54,{stroke:"#262d2b",strokeWidth:4,roughness:2.2,bowing:1.4}),e.line(h,f-10,h-24,f-42,{stroke:"#262d2b",strokeWidth:3,roughness:2.2,bowing:1.4}),e.line(h,f-10,h+24,f-42,{stroke:"#262d2b",strokeWidth:3,roughness:2.2,bowing:1.4}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#705b4a"),ft(t)}function tG(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#176847","#0f4f37"),e.circle(fb(.47,.5,t),fy(.47,.5,t),.42*t.height,{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.3,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),ft(t)}function tI(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f4cf34","#a98218"),fc(t,0,0,1/3,1,"#262d2b","#111615"),fc(t,1/3,0,2/3,1,"#f4cf34","#a98218"),fc(t,2/3,0,1,1,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f4f28"),ft(t)}function tE(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#249064","#176847"),fc(t,0,0,1,.5,"#c83c4a","#8f2633"),fc(t,0,.5,1,1,"#249064","#176847"),fn(fb(.5,.5,t),fy(.5,.5,t),30,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function tO(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#fbfdfa","#c7d1cc"),fc(t,0,1/3,1,2/3,"#249064","#176847"),fc(t,0,2/3,1,1,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#5d5a48"),ft(t)}function tL(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=[[fb(.28,0,t),fy(.28,0,t)]];for(let e=0;e<5;e+=1)h.push([fb(.42,(e+.5)/5,t),fy(.42,(e+.5)/5,t)]),h.push([fb(.28,(e+1)/5,t),fy(.28,(e+1)/5,t)]);h7(i),h9(i,"#c83c4a","#8f2633"),e.polygon([[fb(0,0,t),fy(0,0,t)],...h,[fb(0,1,t),fy(0,1,t)]],{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function tC(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.5,.5,t),f=fy(.5,.5,t);h7(i),h9(i,"#249064","#176847"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(1,0,t),fy(1,0,t)],[h,f]],{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fb(0,1,t),fy(0,1,t)],[fb(1,1,t),fy(1,1,t)],[h,f]],{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fh(t,0,0,1,1,"#fbfdfa",30),fh(t,1,0,0,1,"#fbfdfa",30),e.circle(h,f,98,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),[[.5,.43],[.45,.56],[.55,.56]].forEach(([e,i],h)=>fd(fb(e,i,t),fy(e,i,t),13,-18+8*h,{stroke:"#8f2633",fill:"#c83c4a",hatch:"rgba(200, 60, 74, 0.5)"})),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#5d5a48"),ft(t)}function tT(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,0,0,.4,1,"#168453","#0f5f3d"),fc(t,.4,0,1,.5,"#f0c83a","#a98218"),fc(t,.4,.5,1,1,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#76623a"),ft(t)}function t$(){tl()}function t_(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#c83c4a","#8f2633"),fi(t),fl(t,.74,.54,"#fbfdfa","#249064"),e.circle(fb(.74,.5,t),fy(.74,.5,t),24,{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"hachure",hachureGap:5,fillWeight:.75,roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function tR(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.5,.5,t),f=fy(.5,.5,t);h7(i),h9(i,"#f0c83a","#a98218"),fh(t,0,.72,1,.18,"#fbfdfa",54),fh(t,0,.72,1,.18,"#262d2b",28),e.rectangle(h-24+fp(1),f-18+fp(1),48,34,{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"hachure",hachureGap:7,fillWeight:.7,roughness:2.2,bowing:1.2}),e.line(h-42,f+24,h+42,f+24+fp(2),{stroke:"#262d2b",strokeWidth:2.2,roughness:2.3,bowing:1.5}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function tD(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,0,0,1,1/3,"#c83c4a","#8f2633"),fc(t,0,1/3,1,2/3,"#f0c83a","#a98218"),fc(t,0,2/3,1,1,"#249064","#176847"),fl(t,.5,.5,"#fbfdfa","#8f2633"),fn(fb(.5,.47,t),fy(.5,.47,t),9,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function tz(){iY()}function tA(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#249064","#176847"),e.polygon([[fb(.5,.12,t),fy(.5,.12,t)],[fb(.88,.5,t),fy(.88,.5,t)],[fb(.5,.88,t),fy(.5,.88,t)],[fb(.12,.5,t),fy(.12,.5,t)]],{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fb(.5,.5,t),fy(.5,.5,t),.38*t.height,{stroke:"#203a74",strokeWidth:1.2,fill:"#2f4f9d",fillStyle:"solid",roughness:2.3,bowing:1.2}),fc({x:t.x+.35*t.width,y:t.y+.47*t.height,width:.3*t.width,height:.08*t.height},0,0,1,1,"#fbfdfa","#c7d1cc"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),ft(t)}function tq(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#3d9fd3","#2c6f9b"),fc(t,0,0,1,1/3,"#3d9fd3","#2c6f9b"),fc(t,0,1/3,1,2/3,"#f0c83a","#a98218"),fc(t,0,2/3,1,1,"#3d9fd3","#2c6f9b"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.42,.5,t),fy(.42,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#111615",strokeWidth:1.2,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#416a88"),ft(t)}function tj(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#ee8b2c","#a9601d"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(1,0,t),fy(1,0,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.line(fb(.38,.66,t),fy(.38,.66,t),fb(.7,.34,t),fy(.7,.34,t),{stroke:"#fbfdfa",strokeWidth:8,roughness:2.6,bowing:2}),fd(fb(.56,.5,t),fy(.56,.5,t),16,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.6)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#9c5524"),ft(t)}function tX(){iF()}function tY(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#75a9d8","#477aa5"),fc(t,0,0,1,.36,"#75a9d8","#477aa5"),fc(t,0,.36,1,.42,"#fbfdfa","#c7d1cc"),fc(t,0,.42,1,.58,"#262d2b","#111615"),fc(t,0,.58,1,.64,"#fbfdfa","#c7d1cc"),fc(t,0,.64,1,1,"#75a9d8","#477aa5"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#416a88"),ft(t)}function tF(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#249064","#176847"),fc(t,0,0,.18,1,"#fbfdfa","#c7d1cc"),fc(t,.18,0,1,.68,"#c83c4a","#8f2633"),fc(t,.18,.68,1,1,"#249064","#176847");for(let i=0;i<6;i+=1)e.line(fb(.035,i/6,t),fy(.035,i/6,t),fb(.145,(i+.5)/6,t),fy(.145,(i+.5)/6,t),{stroke:"#c83c4a",strokeWidth:2.4,roughness:2.2,bowing:1.5});fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function tV(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#253f78","#1b2c56"),fc(t,0,0,1,.12,"#c83c4a","#8f2633"),fc(t,0,.88,1,1,"#c83c4a","#8f2633"),e.circle(fb(.5,.5,t),fy(.5,.5,t),.42*t.height,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"hachure",hachureGap:9,fillWeight:.45,roughness:2.3,bowing:1.2}),fl(t,.5,.5,"#f0c83a","#249064"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function tZ(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.5,.5,t),f=fy(.5,.5,t);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,.25,1,"#c83c4a","#8f2633"),fc(t,.75,0,1,1,"#c83c4a","#8f2633"),e.polygon([[h,f-74],[h+17,f-28],[h+55,f-42],[h+34,f-4],[h+70,f+8],[h+28,f+22],[h+36,f+64],[h,f+36],[h-36,f+64],[h-28,f+22],[h-70,f+8],[h-34,f-4],[h-55,f-42],[h-17,f-28]],{stroke:"#8f2633",strokeWidth:1.8,fill:"#c83c4a",fillStyle:"solid",roughness:2.4,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function tQ(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#176847","#0f4f37"),e.circle(fb(.22,.34,t),fy(.22,.34,t),70,{stroke:"#b68b12",strokeWidth:1.2,fill:"#ffd84c",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fb(.26,.34,t),fy(.26,.34,t),62,{stroke:"#0f4f37",strokeWidth:1,fill:"#176847",fillStyle:"solid",roughness:2.2,bowing:1.2}),[[.64,.3,12],[.75,.44,11],[.62,.58,12],[.8,.68,8]].forEach(([e,i,h],f)=>fn(fb(e,i,t),fy(e,i,t),h,-18+5*f)),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),ft(t)}function tH(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#3d9fd3","#2c6f9b"),fh(t,.1,1,1,.1,"#f0c83a",42),fh(t,.1,1,1,.1,"#c83c4a",24),fn(fb(.22,.22,t),fy(.22,.22,t),31,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),ft(t)}function tN(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.25,"#2f5fa0","#203a74"),fc(t,0,.25,1,.5,"#fbfdfa","#c7d1cc"),fc(t,0,.5,1,.75,"#249064","#176847"),fc(t,0,.75,1,1,"#f0c83a","#a98218"),fc(t,.44,0,.56,1,"#c83c4a","#8f2633"),fn(fb(.2,.13,t),fy(.2,.13,t),22,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function tB(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#249064","#176847"),e.polygon(fu(0,0,1,1,t),{stroke:"#176847",strokeWidth:1.2,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fb(.28,1,t),fy(.28,1,t)],[fb(0,1,t),fy(0,1,t)],[fb(.72,0,t),fy(.72,0,t)],[fb(1,0,t),fy(1,0,t)]],{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fb(.72,0,t),fy(.72,0,t)],[fb(1,0,t),fy(1,0,t)],[fb(1,1,t),fy(1,1,t)],[fb(.28,1,t),fy(.28,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function tU(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#c83c4a","#8f2633"),fc(t,.41,.23,.59,.77,"#fbfdfa","#c7d1cc"),fc(t,.25,.41,.75,.59,"#fbfdfa","#c7d1cc"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function tJ(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1/3,1,"#ee8b2c","#a9601d"),fc(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fc(t,2/3,0,1,1,"#249064","#176847"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#7f7041"),ft(t)}function tK(){let t=h6(),e=fa(t.x,t.y,t.width,t.height),i=fb(.72,.5,t),h=fy(.72,.5,t);h7(e),h9(e,"#243f78","#1b2c56"),fi(t);for(let t=0;t<15;t+=1){let e=2*Math.PI*t/15;fd(i+54*Math.cos(e),h+54*Math.sin(e),7,-18+t,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.6)"})}fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function t2(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,.33,.5,"#2f4f9d","#203a74"),fc(t,.33,0,1,.5,"#fbfdfa","#c7d1cc"),fc(t,0,.5,1,1,"#c83c4a","#8f2633"),fd(fb(.165,.25,t),fy(.165,.25,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function t1(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#c83c4a","#8f2633"),fc(t,0,0,1/3,1,"#249064","#176847"),fc(t,1/3,0,2/3,1,"#c83c4a","#8f2633"),fc(t,2/3,0,1,1,"#f0c83a","#a98218"),fn(fb(.5,.5,t),fy(.5,.5,t),31,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function t3(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f4cf34","#a98218"),fc(t,0,0,1,.5,"#f4cf34","#a98218"),fc(t,0,.5,1,.75,"#2f4f9d","#203a74"),fc(t,0,.75,1,1,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#80623f"),ft(t)}function t0(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/6,"#253f78","#1b2c56"),fc(t,0,1/6,1,2/6,"#fbfdfa","#c7d1cc"),fc(t,0,2/6,1,4/6,"#c83c4a","#8f2633"),fc(t,0,4/6,1,5/6,"#fbfdfa","#c7d1cc"),fc(t,0,5/6,1,1,"#253f78","#1b2c56"),e.circle(fb(.38,.5,t),fy(.38,.5,t),36,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"hachure",hachureGap:7,fillWeight:.45,roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function t4(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc");for(let e=0;e<5;e+=1)fc(t,0,e/5,1,(e+1)/5,e%2==0?"#2f4f9d":"#fbfdfa",e%2==0?"#203a74":"#c7d1cc");e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.42,.5,t),fy(.42,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fd(fb(.16,.5,t),fy(.16,.5,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#4d5d86"),ft(t)}function t8(){let t=h6(),e=fa(t.x,t.y,t.width,t.height),i=fb(.34,.6,t),h=fy(.34,.6,t);h7(e),h9(e,"#253f78","#1b2c56"),fc(t,0,.52,1,.58,"#fbfdfa","#c7d1cc"),fc(t,0,.6,1,.68,"#c83c4a","#8f2633"),fc(t,0,.7,1,.76,"#fbfdfa","#c7d1cc");for(let t=0;t<10;t+=1){let e=2*Math.PI*t/10;fn(i+42*Math.cos(e),h+42*Math.sin(e),7,-18+4*t)}fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function t5(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#253f78","#1b2c56"),fc(t,0,.68,1,.78,"#f0c83a","#a98218"),fd(fb(.24,.28,t),fy(.24,.28,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fd(fb(.34,.38,t),fy(.34,.38,t),11,-10,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function t6(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#243f78","#1b2c56"),fc(t,.5,0,1,1,"#176847","#0f4f37"),fi(t),e.circle(fb(.72,.5,t),fy(.72,.5,t),70,{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"hachure",hachureGap:8,fillWeight:.6,roughness:2.2,bowing:1.2}),fd(fb(.3,.75,t),fy(.3,.75,t),16,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.6)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function t7(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),e.polygon([[fb(.36,.43,t),fy(.36,.43,t)],[fb(.48,.36,t),fy(.48,.36,t)],[fb(.66,.42,t),fy(.66,.42,t)],[fb(.58,.54,t),fy(.58,.54,t)],[fb(.42,.54,t),fy(.42,.54,t)]],{stroke:"#a9601d",strokeWidth:1.2,fill:"#ee8b2c",fillStyle:"hachure",hachureGap:8,fillWeight:.7,roughness:2.2,bowing:1.2}),e.line(fb(.38,.64,t),fy(.38,.64,t),fb(.5,.58,t),fy(.5,.58,t),{stroke:"#249064",strokeWidth:2,roughness:2.2,bowing:1.5}),e.line(fb(.62,.64,t),fy(.62,.64,t),fb(.5,.58,t),fy(.5,.58,t),{stroke:"#249064",strokeWidth:2,roughness:2.2,bowing:1.5}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#cbd8ce"),ft(t)}function t9(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.5,"#fbfdfa","#c7d1cc"),fc(t,0,.5,1,1,"#c83c4a","#8f2633"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.46,.5,t),fy(.46,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#203a74",strokeWidth:1.2,fill:"#2f4f9d",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function et(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f4cf34","#a98218"),fc(t,0,0,1,1/3,"#262d2b","#111615"),fc(t,0,1/3,1,2/3,"#c83c4a","#8f2633"),fc(t,0,2/3,1,1,"#f4cf34","#a98218"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#745232"),ft(t)}function ee(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#249064","#176847"),fc(t,0,0,1,.5,"#4f9fd3","#2c6f9b"),fc(t,0,.5,1,1,"#249064","#176847"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.42,.5,t),fy(.42,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),fd(fb(.16,.5,t),fy(.16,.5,t),19,-18,{stroke:"#8f2633",fill:"#c83c4a",hatch:"#d8585f"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),ft(t)}function ei(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#c83c4a","#8f2633"),fc(t,.29,0,.41,1,"#fbfdfa","#c7d1cc"),fc(t,0,.42,1,.58,"#fbfdfa","#c7d1cc"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function eh(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#176847","#0f4f37"),fc(t,.43,0,.57,1,"#f0c83a","#a98218"),fc(t,0,.4,1,.6,"#f0c83a","#a98218"),fc(t,.47,0,.53,1,"#262d2b","#111615"),fc(t,0,.46,1,.54,"#262d2b","#111615"),fc(t,.5,0,.54,1,"#fbfdfa","#c7d1cc"),fc(t,0,.5,1,.56,"#fbfdfa","#c7d1cc"),e.circle(fb(.5,.5,t),fy(.5,.5,t),76,{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.3,bowing:1.2}),fn(fb(.5,.5,t),fy(.5,.5,t),18,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),ft(t)}function ef(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,.44,.42,"#253f78","#1b2c56"),fc(t,.56,0,1,.42,"#c83c4a","#8f2633"),fc(t,0,.58,.44,1,"#c83c4a","#8f2633"),fc(t,.56,.58,1,1,"#253f78","#1b2c56"),fc(t,.44,0,.56,1,"#fbfdfa","#c7d1cc"),fc(t,0,.42,1,.58,"#fbfdfa","#c7d1cc"),fl(t,.5,.5,"#fbfdfa","#249064"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function ec(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,.5,1,"#249064","#176847"),fc(t,.5,0,1,1,"#fbfdfa","#c7d1cc"),e.circle(fb(.52,.5,t),fy(.52,.5,t),.32*t.height,{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fb(.57,.5,t),fy(.57,.5,t),.27*t.height,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),fd(fb(.62,.5,t),fy(.62,.5,t),22,-18,{stroke:"#8f2633",fill:"#c83c4a",hatch:"#d8585f"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),ft(t)}function el(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,0,0,1,.5,"#f0c83a","#a98218"),fc(t,0,.5,1,.75,"#2f4f9d","#203a74"),fc(t,0,.75,1,1,"#c83c4a","#8f2633"),fl(t,.5,.5,"#fbfdfa","#a98218"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#80623f"),ft(t)}function eo(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#4f9fd3","#2c6f9b"),fc(t,0,1/3,1,2/3,"#262d2b","#111615"),fc(t,0,2/3,1,1,"#fbfdfa","#c7d1cc"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3c5f73"),ft(t)}function ea(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#c83c4a","#8f2633"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#262d2b","#111615"),fl(t,.5,.5,"#d7a735","#a98218"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function es(){var t,i,h,f;let c,l;t="#262d2b",i="#fbfdfa",h="#249064",f=!0,h7(l=fa((c=h6()).x,c.y,c.width,c.height)),h9(l,i,"#c7d1cc"),fc(c,0,0,1,1/3,t,"#262d2b"===t?"#111615":fk(t,.75)),fc(c,0,1/3,1,2/3,i,"#fbfdfa"===i?"#c7d1cc":fk(i,.75)),fc(c,0,2/3,1,1,h,fk(h,.75)),e.polygon([[fb(0,0,c),fy(0,0,c)],[fb(.38,.5,c),fy(.38,.5,c)],[fb(0,1,c),fy(0,1,c)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),f&&(e.circle(fb(.57,.5,c),fy(.57,.5,c),44,{stroke:"#8f2633",strokeWidth:1,fill:"transparent",roughness:2.2,bowing:1.2}),fd(fb(.64,.5,c),fy(.64,.5,c),13,-18,{stroke:"#8f2633",fill:"#c83c4a",hatch:"#d8585f"})),fs(c.x+14,c.y+22,c.width-36,c.height-50,"#6f353c"),ft(c)}function en(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#4f9fd3","#2c6f9b"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(1,0,t),fy(1,0,t)],[fb(0,.5,t),fy(0,.5,t)]],{stroke:"#176847",strokeWidth:1,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(1,.5,t),fy(1,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.line(fb(.2,.38,t),fy(.2,.38,t),fb(.2,.64,t),fy(.2,.64,t),{stroke:"#f0c83a",strokeWidth:4,roughness:2.3,bowing:1.6}),fn(fb(.2,.34,t),fy(.2,.34,t),13,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function ed(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#f0c83a","#a98218"),fc(t,0,0,1,1/3,"#249064","#176847"),fc(t,0,1/3,1,2/3,"#f0c83a","#a98218"),fc(t,0,2/3,1,1,"#c83c4a","#8f2633"),e.circle(fb(.5,.5,t),fy(.5,.5,t),.34*t.height,{stroke:"#203a74",strokeWidth:1.2,fill:"#2f4f9d",fillStyle:"solid",roughness:2.3,bowing:1.2}),fn(fb(.5,.5,t),fy(.5,.5,t),28,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function er(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,.28,0,.42,1,"#2f4f9d","#203a74"),fc(t,0,.38,1,.56,"#2f4f9d","#203a74"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#4d5d86"),ft(t)}function eg(){fe("#75a9d8","#477aa5","#fbfdfa","#8f2633")}function eu(){fe("#243f78","#1b2c56","#fbfdfa","#2f6fa4")}function eb(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#4f9fd3","#2c6f9b"),[[.5,.28],[.68,.5],[.5,.72],[.32,.5]].forEach(([e,i],h)=>{fd(fb(e,i,t),fy(e,i,t),20,-18+5*h,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"})}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),ft(t)}function ey(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,.28,0,.44,1,"#2f4f9d","#203a74"),fc(t,0,.38,1,.58,"#2f4f9d","#203a74"),fc(t,.32,0,.4,1,"#c83c4a","#8f2633"),fc(t,0,.43,1,.53,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#cbd8ce"),ft(t)}function ew(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,0,0,1,1/3,"#249064","#176847"),fc(t,0,1/3,1,2/3,"#f0c83a","#a98218"),fc(t,0,2/3,1,1,"#3d78bd","#284f84"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#5d7653"),ft(t)}function ek(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#253f78","#1b2c56"),fh(t,0,0,1,1,"#fbfdfa",26),fh(t,1,0,0,1,"#fbfdfa",26),fh(t,0,0,1,1,"#c83c4a",10),fh(t,1,0,0,1,"#c83c4a",10),fc(t,.43,0,.57,1,"#fbfdfa","#c7d1cc"),fc(t,0,.39,1,.61,"#fbfdfa","#c7d1cc"),fc(t,.47,0,.53,1,"#c83c4a","#8f2633"),fc(t,0,.45,1,.55,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function ex(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#c83c4a","#8f2633"),fc(t,.1,.16,.9,.84,"#f0c83a","#a98218"),e.polygon([[fb(.1,.16,t),fy(.1,.16,t)],[fb(.5,.5,t),fy(.5,.5,t)],[fb(.1,.84,t),fy(.1,.84,t)]],{stroke:"#176847",strokeWidth:1,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fb(.9,.16,t),fy(.9,.16,t)],[fb(.5,.5,t),fy(.5,.5,t)],[fb(.9,.84,t),fy(.9,.84,t)]],{stroke:"#176847",strokeWidth:1,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),fd(fb(.5,.5,t),fy(.5,.5,t),28,-18,{stroke:"#b68b12",fill:"#ffd84c",hatch:"#ffec62"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function ep(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,.44,0,.56,1,"#c83c4a","#8f2633"),fc(t,0,.42,1,.58,"#c83c4a","#8f2633"),[[.24,.23],[.76,.23],[.24,.77],[.76,.77]].forEach(([e,i])=>{fc(t,e-.035,i-.11,e+.035,i+.11,"#c83c4a","#8f2633"),fc(t,e-.105,i-.035,e+.105,i+.035,"#c83c4a","#8f2633")}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function eW(){tl()}function eM(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,.43,0,.57,1,"#c83c4a","#8f2633"),fc(t,0,.4,1,.6,"#c83c4a","#8f2633"),fc(t,.47,.18,.53,.82,"#f0c83a","#a98218"),fc(t,.24,.47,.76,.53,"#f0c83a","#a98218"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function em(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,0,0,1,1/3,"#c83c4a","#8f2633"),fc(t,0,1/3,1,2/3,"#f0c83a","#a98218"),fc(t,0,2/3,1,1,"#249064","#176847"),fd(fb(.5,.5,t),fy(.5,.5,t),30,-18,{stroke:"#111615",fill:"#262d2b",hatch:"rgba(38, 45, 43, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function eS(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.5,.48,t),f=fy(.5,.48,t);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,.68,1,1,"#c83c4a","#8f2633"),e.rectangle(h-48,f-38,96,54,{stroke:"#8f2633",strokeWidth:1.4,fill:"#c83c4a",fillStyle:"hachure",hachureGap:7,fillWeight:.75,roughness:2.2,bowing:1.2}),e.line(h,f+18,h,f+86,{stroke:"#f0c83a",strokeWidth:4,roughness:2.3,bowing:1.5}),e.circle(h,f+92,18,{stroke:"#a98218",strokeWidth:1,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function eP(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.5,"#fbfdfa","#c7d1cc"),fc(t,0,.5,1,1,"#c83c4a","#8f2633"),e.circle(fb(.38,.5,t),fy(.38,.5,t),.42*t.height,{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.3,bowing:1.2}),fc({x:fb(.17,.5,t),y:fy(.5,.5,t),width:.42*t.width,height:.22*t.height},0,0,1,1,"#fbfdfa","#c7d1cc"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function ev(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#249064","#176847"),fc(t,0,0,1,.33,"#c83c4a","#8f2633"),fc(t,0,.33,1,.4,"#fbfdfa","#c7d1cc"),fc(t,0,.4,1,.6,"#253f78","#1b2c56"),fc(t,0,.6,1,.67,"#fbfdfa","#c7d1cc"),fc(t,0,.67,1,1,"#249064","#176847"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function eG(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f4cf34","#a98218"),fc(t,0,0,1/3,1,"#c83c4a","#8f2633"),fc(t,1/3,0,2/3,1,"#f4cf34","#a98218"),fc(t,2/3,0,1,1,"#249064","#176847"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function eI(){tl()}function eE(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#249064","#176847"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#c83c4a","#8f2633"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.32,.5,t),fy(.32,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#2c6f9b",strokeWidth:1.2,fill:"#4f9fd3",fillStyle:"solid",roughness:2.2,bowing:1.2}),fl(t,.5,.5,"#fbfdfa","#249064"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function eO(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc");for(let e=0;e<9;e+=1){let i=e%2==0?"#2f78bd":"#fbfdfa",h=e%2==0?"#20588e":"#c7d1cc";fc(t,0,e/9,1,(e+1)/9,i,h)}fc(t,0,0,.38,5/9,"#2f78bd","#20588e"),fc(t,.145,0,.235,5/9,"#fbfdfa","#c7d1cc"),fc(t,0,2/9,.38,3/9,"#fbfdfa","#c7d1cc"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3d6e98"),ft(t)}function eL(){fe("#243f78","#1b2c56","#fbfdfa","#249064")}function eC(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1/3,1,"#75a9d8","#477aa5"),fc(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fc(t,2/3,0,1,1,"#75a9d8","#477aa5"),fl(t,.5,.5,"#f0c83a","#249064"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#477aa5"),ft(t)}function eT(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#253f78","#1b2c56"),fc(t,0,0,1,.08,"#c83c4a","#8f2633"),fc(t,0,.92,1,1,"#c83c4a","#8f2633"),fc(t,0,0,.06,1,"#c83c4a","#8f2633"),fc(t,.94,0,1,1,"#c83c4a","#8f2633"),e.circle(fb(.5,.5,t),fy(.5,.5,t),84,{stroke:"#8f2633",strokeWidth:1.2,fill:"#75a9d8",fillStyle:"hachure",hachureGap:8,fillWeight:.6,roughness:2.2,bowing:1.2}),e.line(fb(.44,.54,t),fy(.44,.54,t),fb(.56,.54,t),fy(.56,.54,t),{stroke:"#249064",strokeWidth:3,roughness:2.2,bowing:1.5}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function e$(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,0,0,.33,1,"#c83c4a","#8f2633"),fc(t,.33,0,1,.5,"#f0c83a","#a98218"),fc(t,.33,.5,1,1,"#249064","#176847"),fd(fb(.165,.5,t),fy(.165,.5,t),26,-18,{stroke:"#111615",fill:"#262d2b",hatch:"rgba(38, 45, 43, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function e_(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#249064","#176847"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.9,.5,t),fy(.9,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#c7d1cc",strokeWidth:7,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fb(0,.05,t),fy(0,.05,t)],[fb(.42,.5,t),fy(.42,.5,t)],[fb(0,.95,t),fy(0,.95,t)]],{stroke:"#111615",strokeWidth:5,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),ft(t)}function eR(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.5,.5,t),f=fy(.5,.5,t);h7(i),h9(i,"#c83c4a","#8f2633");for(let t=0;t<5;t+=1){let i=-Math.PI/2+2*Math.PI*t/5,c=h+42*Math.cos(i),l=f+42*Math.sin(i);e.circle(c,l,42,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.4,bowing:1.2})}e.circle(h,f,22,{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.1}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function eD(){tf()}function ez(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#4f9fd3","#2c6f9b"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#4f9fd3","#2c6f9b"),[[.42,.43],[.58,.43],[.5,.5],[.42,.57],[.58,.57]].forEach(([e,i],h)=>{fd(fb(e,i,t),fy(e,i,t),9,-18+4*h,{stroke:"#2c6f9b",fill:"#4f9fd3",hatch:"#75b6de"})}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),ft(t)}function eA(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#c83c4a","#8f2633"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#253f78","#1b2c56"),fl(t,.5,.5,"#fbfdfa","#c83c4a"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function eq(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.5,"#253f78","#1b2c56"),fc(t,0,.5,1,1,"#c83c4a","#8f2633"),fc(t,.38,.38,.62,.62,"#fbfdfa","#c7d1cc"),fl(t,.5,.5,"#f0c83a","#249064"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function ej(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#c83c4a","#8f2633"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#249064","#176847"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#71634e"),ft(t)}function eX(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.5,"#c83c4a","#8f2633"),fc(t,0,.5,1,1,"#fbfdfa","#c7d1cc"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function eY(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1/3,1,"#249064","#176847"),fc(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fc(t,2/3,0,1,1,"#ee8b2c","#a9601d"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#75744a"),ft(t)}function eF(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,.16,1,.26,"#2f4f9d","#203a74"),fc(t,0,.74,1,.84,"#2f4f9d","#203a74"),fd(fb(.5,.5,t),fy(.5,.5,t),46,-30,{stroke:"#203a74",fill:"rgba(47, 79, 157, 0.08)",hatch:"#2f4f9d"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#4d5d86"),ft(t)}function eV(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.5,.5,t),f=fy(.5,.5,t);h7(i),h9(i,"#c83c4a","#8f2633");for(let t=0;t<3;t+=1){let i=-Math.PI/2+2*Math.PI*t/3,c=h+42*Math.cos(i),l=f+42*Math.sin(i),o=h+78*Math.cos(i+.55),a=f+78*Math.sin(i+.55);e.line(h,f,c,l,{stroke:"#f0c83a",strokeWidth:7,roughness:2.4,bowing:1.6}),e.line(c,l,o,a,{stroke:"#f0c83a",strokeWidth:6,roughness:2.4,bowing:1.6})}e.circle(h,f,24,{stroke:"#a98218",strokeWidth:1,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function eZ(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.5,.5,t),f=fy(.5,.5,t);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#ee8b2c","#a9601d"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#249064","#176847"),e.circle(h,f,68,{stroke:"#203a74",strokeWidth:1.4,fill:"transparent",roughness:2.1,bowing:1.1});for(let t=0;t<12;t+=1){let i=2*Math.PI*t/12;e.line(h,f,h+34*Math.cos(i),f+34*Math.sin(i),{stroke:"#203a74",strokeWidth:.65,roughness:2,bowing:1.3})}fs(t.x+14,t.y+22,t.width-36,t.height-50,"#756b4d"),ft(t)}function eQ(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc");for(let e=0;e<8;e+=1)fc(t,0,e/8,1,(e+.5)/8,"#2f5fa0","#203a74");fi(t),e.line(fb(.72,.42,t),fy(.72,.42,t),fb(.72,.7,t),fy(.72,.7,t),{stroke:"#6f4f28",strokeWidth:5,roughness:2.4,bowing:1.7}),fn(fb(.72,.34,t),fy(.72,.34,t),22,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#4d5d86"),ft(t)}function eH(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#c83c4a","#8f2633"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#262d2b","#111615"),e.line(fb(.38,.5,t),fy(.38,.5,t),fb(.62,.5,t),fy(.62,.5,t),{stroke:"#249064",strokeWidth:5,roughness:2.2,bowing:1.5}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function eN(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#249064","#176847"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#c83c4a","#8f2633"),fc(t,.47,.39,.53,.61,"#c83c4a","#8f2633"),fd(fb(.5,.5,t),fy(.5,.5,t),20,-18,{stroke:"#8f2633",fill:"rgba(200, 60, 74, 0.18)",hatch:"#c83c4a"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function eB(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#2f4f9d","#203a74"),fc(t,.28,0,.46,1,"#fbfdfa","#c7d1cc"),fc(t,0,.36,1,.58,"#fbfdfa","#c7d1cc"),fc(t,.33,0,.41,1,"#c83c4a","#8f2633"),fc(t,0,.43,1,.51,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#4f4e86"),ft(t)}function eU(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1,"#c83c4a",13),fh(t,1,0,0,1,"#c83c4a",13),fl(t,.5,.27,"#f0c83a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#cbd8ce"),ft(t)}function eJ(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#249064","#176847"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.5,.5,t),fy(.5,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#111615",strokeWidth:1,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fb(1,0,t),fy(1,0,t)],[fb(.5,.5,t),fy(.5,.5,t)],[fb(1,1,t),fy(1,1,t)]],{stroke:"#111615",strokeWidth:1,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),fh(t,0,0,1,1,"#f0c83a",26),fh(t,1,0,0,1,"#f0c83a",26),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),ft(t)}function eK(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#262d2b","#111615"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#249064","#176847"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.44,.5,t),fy(.44,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fd(fb(.18,.5,t),fy(.18,.5,t),16,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function e2(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.3,"#262d2b","#111615"),fc(t,0,.34,1,.66,"#c83c4a","#8f2633"),fc(t,0,.7,1,1,"#249064","#176847"),e.circle(fb(.5,.5,t),fy(.5,.5,t),76,{stroke:"#111615",strokeWidth:1.3,fill:"#b64f36",fillStyle:"hachure",hachureGap:8,fillWeight:.55,roughness:2.3,bowing:1.2}),e.line(fb(.42,.25,t),fy(.42,.25,t),fb(.58,.75,t),fy(.58,.75,t),{stroke:"#fbfdfa",strokeWidth:3,roughness:2.2,bowing:1.5}),e.line(fb(.58,.25,t),fy(.58,.25,t),fb(.42,.75,t),fy(.42,.75,t),{stroke:"#fbfdfa",strokeWidth:3,roughness:2.2,bowing:1.5}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function e1(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.5,.5,t),f=fy(.5,.5,t);h7(i),h9(i,"#c83c4a","#8f2633"),e.circle(h,f,90,{stroke:"#b68b12",strokeWidth:1.2,fill:"#ffd84c",fillStyle:"hachure",hachureGap:9,fillWeight:.7,roughness:2.3,bowing:1.2});for(let t=0;t<8;t+=1){let i=2*Math.PI*t/8;e.line(h,f,h+68*Math.cos(i),f+68*Math.sin(i),{stroke:"#c83c4a",strokeWidth:1,roughness:2,bowing:1.3})}fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function e3(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#253f78","#1b2c56"),fc(t,0,0,1,.25,"#253f78","#1b2c56"),fc(t,0,.25,1,.75,"#c83c4a","#8f2633"),fc(t,0,.75,1,1,"#253f78","#1b2c56"),fc(t,.38,.48,.62,.66,"#fbfdfa","#c7d1cc"),e.polygon([[fb(.4,.48,t),fy(.4,.48,t)],[fb(.5,.34,t),fy(.5,.34,t)],[fb(.6,.48,t),fy(.6,.48,t)]],{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function e0(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#c83c4a","#8f2633"),fc(t,0,.5,1,1,"#253f78","#1b2c56");for(let e=0;e<3;e+=1)fh({x:t.x,y:t.y+t.height*(.58+.11*e),width:t.width,height:.05*t.height},0,0,1,0,"#fbfdfa",5);fn(fb(.5,.34,t),fy(.5,.34,t),38,-18),e.line(fb(.42,.24,t),fy(.42,.24,t),fb(.58,.24,t),fy(.58,.24,t),{stroke:"#f0c83a",strokeWidth:5,roughness:2.4,bowing:2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function e4(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.25,"#f0c83a","#a98218"),fc(t,0,.25,1,.5,"#fbfdfa","#c7d1cc"),fc(t,0,.5,1,.75,"#c83c4a","#8f2633"),fc(t,0,.75,1,1,"#253f78","#1b2c56"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.42,.5,t),fy(.42,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#176847",strokeWidth:1.2,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fb(.17,.5,t),fy(.17,.5,t),54,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fb(.2,.5,t),fy(.2,.5,t),48,{stroke:"#176847",strokeWidth:1,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function e8(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#249064","#176847"),e.polygon([[fb(1,0,t),fy(1,0,t)],[fb(0,1,t),fy(0,1,t)],[fb(1,1,t),fy(1,1,t)]],{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fh(t,0,1,1,0,"#f0c83a",46),fh(t,0,1,1,0,"#262d2b",28),[[.38,.58],[.62,.42]].forEach(([e,i])=>fd(fb(e,i,t),fy(e,i,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"})),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),ft(t)}function e5(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#c83c4a","#8f2633"),fc(t,0,0,1,.18,"#253f78","#1b2c56"),fc(t,0,.18,1,.24,"#fbfdfa","#c7d1cc"),fc(t,0,.76,1,.82,"#fbfdfa","#c7d1cc"),fc(t,0,.82,1,1,"#253f78","#1b2c56"),e.circle(fb(.32,.5,t),fy(.32,.5,t),82,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),fd(fb(.32,.5,t),fy(.32,.5,t),30,-18,{stroke:"#8f2633",fill:"#c83c4a",hatch:"#d8585f"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function e6(){let i=h6(),h=fa(i.x,i.y,i.width,i.height),f=fb(.5,.5,i),c=fy(.5,.5,i),l=.18*i.height;h7(h),h9(h,"#fbfdfa","#c7d1cc"),t.save(),t.translate(f,c),t.rotate(-34*Math.PI/180),t.beginPath(),t.arc(0,0,l,0,2*Math.PI),t.clip(),t.fillStyle="#c83c4a",t.fillRect(-l,-l,2*l,l),t.fillStyle="#253f78",t.fillRect(-l,0,2*l,l),t.beginPath(),t.arc(-l/2,0,l/2,0,2*Math.PI),t.fillStyle="#253f78",t.fill(),t.beginPath(),t.arc(l/2,0,l/2,0,2*Math.PI),t.fillStyle="#c83c4a",t.fill(),t.restore(),e.circle(f,c,2*l,{stroke:"#28332e",strokeWidth:1.1,fill:"transparent",roughness:2.1,bowing:1.1}),fo(i,.28,.27,-34,[!0,!0,!0]),fo(i,.72,.27,34,[!1,!0,!1]),fo(i,.28,.73,34,[!0,!1,!0]),fo(i,.72,.73,-34,[!1,!1,!1]),fs(i.x+14,i.y+22,i.width-36,i.height-50,"#cbd8ce"),ft(i)}function e7(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#249064","#176847"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#c83c4a","#8f2633"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.28,1/3,t),fy(.28,1/3,t)],[fb(.28,2/3,t),fy(.28,2/3,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#111615",strokeWidth:1.2,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function e9(){fe("#243f78","#1b2c56","#fbfdfa","#2f6fa4")}function it(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#4f9fd3","#2c6f9b"),fc(t,.08,.08,.12,.92,"#f0c83a","#a98218"),e.circle(fb(.55,.42,t),fy(.55,.42,t),76,{stroke:"#b68b12",strokeWidth:1,fill:"#ffd84c",fillStyle:"hachure",hachureGap:8,fillWeight:.6,roughness:2.2,bowing:1.2}),e.line(fb(.42,.62,t),fy(.42,.62,t),fb(.68,.62,t),fy(.68,.62,t),{stroke:"#a98218",strokeWidth:5,roughness:2.2,bowing:1.6}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),ft(t)}function ie(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#273f78","#1b2c56"),fc(t,0,0,1,.25,"#c83c4a","#8f2633"),fc(t,0,.25,1,.75,"#273f78","#1b2c56"),fc(t,0,.75,1,1,"#c83c4a","#8f2633"),e.circle(fb(.5,.5,t),fy(.5,.5,t),.34*t.height,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#4f4e86"),ft(t)}function ii(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.25,"#c83c4a","#8f2633"),fc(t,0,.75,1,1,"#c83c4a","#8f2633"),e.polygon([[fb(.5,.34,t),fy(.5,.34,t)],[fb(.6,.6,t),fy(.6,.6,t)],[fb(.53,.6,t),fy(.53,.6,t)],[fb(.53,.68,t),fy(.53,.68,t)],[fb(.47,.68,t),fy(.47,.68,t)],[fb(.47,.6,t),fy(.47,.6,t)],[fb(.4,.6,t),fy(.4,.6,t)]],{stroke:"#176847",strokeWidth:1.2,fill:"#249064",fillStyle:"solid",roughness:2.3,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function ih(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#4f9fd3","#2c6f9b"),e.polygon([[fb(.5,.2,t),fy(.5,.2,t)],[fb(.73,.78,t),fy(.73,.78,t)],[fb(.27,.78,t),fy(.27,.78,t)]],{stroke:"#111615",strokeWidth:1.2,fill:"#262d2b",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.polygon([[fb(.5,.29,t),fy(.5,.29,t)],[fb(.64,.74,t),fy(.64,.74,t)],[fb(.36,.74,t),fy(.36,.74,t)]],{stroke:"#a98218",strokeWidth:1.1,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),ft(t)}function ic(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#c83c4a","#8f2633"),fc(t,0,0,1,.5,"#253f78","#1b2c56"),fc(t,0,.5,1,1,"#c83c4a","#8f2633"),e.circle(fb(.18,.24,t),fy(.18,.24,t),34,{stroke:"#b68b12",strokeWidth:1,fill:"#ffd84c",fillStyle:"hachure",hachureGap:6,fillWeight:.8,roughness:2.2,bowing:1.2}),fc(t,.13,.29,.23,.34,"#ffd84c","#b68b12"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function il(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,.08,.1,.22,.9,"#249064","#176847"),fc(t,.22,.1,.36,.9,"#ee8b2c","#a9601d"),fc(t,.4,.1,.92,.9,"#7b314b","#572439"),fd(fb(.66,.5,t),fy(.66,.5,t),42,-18,{stroke:"#b68b12",fill:"#ffd84c",hatch:"#ffec62"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#80623f"),ft(t)}function io(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc");for(let e=0;e<11;e+=1)e%2==0&&fc(t,0,e/11,1,(e+1)/11,"#c83c4a","#8f2633");fc(t,0,0,.36,5/11,"#253f78","#1b2c56"),fd(fb(.18,.23,t),fy(.18,.23,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function ia(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.3,"#253f78","#1b2c56"),fc(t,0,.3,1,.7,"#fbfdfa","#c7d1cc"),fc(t,0,.7,1,1,"#249064","#176847"),e.polygon([[fb(.5,.42,t),fy(.5,.42,t)],[fb(.6,.62,t),fy(.6,.62,t)],[fb(.4,.62,t),fy(.4,.62,t)]],{stroke:"#111615",strokeWidth:1.2,fill:"#262d2b",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.line(fb(.38,.63,t),fy(.38,.63,t),fb(.62,.63,t),fy(.62,.63,t),{stroke:"#262d2b",strokeWidth:4,roughness:2.2,bowing:1.5}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#4d5d86"),ft(t)}function is(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,0,0,1,1/3,"#f0c83a","#a98218"),fc(t,0,1/3,1,2/3,"#249064","#176847"),fc(t,0,2/3,1,1,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function id(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#c83c4a","#8f2633"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#56a9d8","#35789d"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6d7082"),ft(t)}function ir(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#8b2934","#63202a"),fc(t,0,0,1,.4,"#8b2934","#63202a"),fc(t,0,.4,1,.6,"#fbfdfa","#c7d1cc"),fc(t,0,.6,1,1,"#8b2934","#63202a"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#63202a"),ft(t)}function ig(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#262d2b","#111615"),fc(t,0,0,1,.25,"#c83c4a","#8f2633"),fc(t,0,.25,1,.75,"#262d2b","#111615"),fc(t,0,.75,1,1,"#249064","#176847"),e.circle(fb(.48,.5,t),fy(.48,.5,t),.25*t.height,{stroke:"#c7d1cc",strokeWidth:1.1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fb(.53,.5,t),fy(.53,.5,t),.22*t.height,{stroke:"#111615",strokeWidth:1,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),fd(fb(.6,.5,t),fy(.6,.5,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#111615"),ft(t)}function iu(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#c83c4a","#8f2633"),fd(fb(.5,.5,t),fy(.5,.5,t),54,-18,{stroke:"#176847",fill:"rgba(36, 144, 100, 0.16)",hatch:"#249064"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function ib(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.5,"#c83c4a","#8f2633"),fc(t,0,.5,1,1,"#fbfdfa","#c7d1cc"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function iy(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,0,0,1/3,1,"#253f78","#1b2c56"),fc(t,1/3,0,2/3,1,"#f0c83a","#a98218"),fc(t,2/3,0,1,1,"#c83c4a","#8f2633"),fl(t,.5,.5,"#fbfdfa","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#705b4a"),ft(t)}function iw(){let t=h6(),e=fa(t.x,t.y,t.width,t.height),i=fb(.5,.5,t),h=fy(.5,.5,t);h7(e),h9(e,"#c83c4a","#8f2633"),fc(t,0,0,1,.06,"#f0c83a","#a98218"),fc(t,0,.94,1,1,"#f0c83a","#a98218"),fc(t,0,0,.05,1,"#f0c83a","#a98218"),fc(t,.95,0,1,1,"#f0c83a","#a98218"),fn(i-28,h-16,24,-18),fn(i+28,h-16,24,12),fl(t,.5,.56,"#f0c83a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function ik(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1/3,1,"#2d4e8c","#1e3768"),fc(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fc(t,2/3,0,1,1,"#cf3d45","#912936"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6d7082"),ft(t)}function ix(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,.35,1,"#fbfdfa","#c7d1cc"),fc(t,.35,0,1,.5,"#c83c4a","#8f2633"),fc(t,.35,.5,1,1,"#249064","#176847"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#71634e"),ft(t)}function ip(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#253f78","#1b2c56"),fh(t,0,.94,1,.4,"#fbfdfa",34),fh(t,0,.98,1,.52,"#ee8b2c",24),fd(fb(.2,.24,t),fy(.2,.24,t),34,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function iW(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.5,.5,t),f=fy(.5,.5,t);h7(i),h9(i,"#c83c4a","#8f2633");for(let i=0;i<8;i+=1){let c=2*Math.PI*i/8;e.line(h,f,h+Math.cos(c)*t.width*.55,f+Math.sin(c)*t.height*.55,{stroke:"#f0c83a",strokeWidth:13,roughness:2.3,bowing:1.5})}e.circle(h,f,76,{stroke:"#a98218",strokeWidth:1.2,fill:"#ffd84c",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function iM(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,0,0,1/3,1,"#249064","#176847"),fc(t,1/3,0,2/3,1,"#f0c83a","#a98218"),fc(t,2/3,0,1,1,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function im(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#249064","#176847"),fc(t,0,0,1,1/3,"#f0c83a","#a98218"),fc(t,0,1/3,1,2/3,"#249064","#176847"),fc(t,0,2/3,1,1,"#c83c4a","#8f2633"),fd(fb(.5,.5,t),fy(.5,.5,t),58,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function iS(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#253f78","#1b2c56"),fc(t,0,0,1/3,1,"#c83c4a","#8f2633"),fc(t,1/3,0,2/3,1,"#253f78","#1b2c56"),fc(t,2/3,0,1,1,"#c83c4a","#8f2633"),fc(t,.12,.22,.2,.78,"#ffd84c","#b68b12"),e.circle(fb(.16,.5,t),fy(.16,.5,t),38,{stroke:"#b68b12",strokeWidth:1,fill:"transparent",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function iP(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.5,.52,t),f=fy(.5,.52,t);h7(i),h9(i,"#176847","#0f4f37");for(let t=0;t<5;t+=1)e.circle(h+(t-2)*22,f,34,{stroke:"#c7d1cc",strokeWidth:.9,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2});[[.5,.22,14],[.43,.32,9],[.57,.32,9],[.38,.43,8],[.62,.43,8]].forEach(([e,i,h],f)=>fn(fb(e,i,t),fy(e,i,t),h,-18+4*f)),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),ft(t)}function iv(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#253f78","#1b2c56"),e.circle(fb(.5,.52,t),fy(.5,.52,t),86,{stroke:"#c7d1cc",strokeWidth:1,fill:"rgba(251, 253, 250, 0.14)",fillStyle:"hachure",hachureGap:10,fillWeight:.5,roughness:2.3,bowing:1.2}),fd(fb(.5,.5,t),fy(.5,.5,t),32,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function iG(){tl()}function iI(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#176847","#0f4f37"),fc(t,0,0,1,.18,"#c83c4a","#8f2633"),fc(t,0,.82,1,1,"#c83c4a","#8f2633"),e.circle(fb(.5,.47,t),fy(.5,.47,t),.32*t.height,{stroke:"#b68b12",strokeWidth:1.2,fill:"transparent",roughness:2.2,bowing:1.2}),e.circle(fb(.5,.41,t),fy(.5,.41,t),.3*t.height,{stroke:"#0f4f37",strokeWidth:1,fill:"#176847",fillStyle:"solid",roughness:2.2,bowing:1.2}),fn(fb(.5,.38,t),fy(.5,.38,t),25,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),ft(t)}function iE(){fe("#243f78","#1b2c56","#fbfdfa","#249064")}function iO(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,.5,1,"#fbfdfa","#c7d1cc"),fc(t,.5,0,1,1,"#c83c4a","#8f2633"),fc(t,.11,.16,.17,.31,"#c7d1cc","#8f9b96"),fc(t,.07,.2,.21,.27,"#c7d1cc","#8f9b96"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function iL(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#249064","#176847"),fc(t,0,0,1,.25,"#c83c4a","#8f2633"),fc(t,0,.25,1,.5,"#253f78","#1b2c56"),fc(t,0,.5,1,.75,"#f0c83a","#a98218"),fc(t,0,.75,1,1,"#249064","#176847"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#705b4a"),ft(t)}function iC(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#c83c4a","#8f2633"),fc(t,.18,.22,.82,.78,"#176847","#0f4f37"),e.circle(fb(.53,.5,t),fy(.53,.5,t),.27*t.height,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fb(.58,.5,t),fy(.58,.5,t),.24*t.height,{stroke:"#0f4f37",strokeWidth:1,fill:"#176847",fillStyle:"solid",roughness:2.3,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function iT(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#c83c4a","#8f2633"),fc(t,0,0,1,1/3,"#262d2b","#111615"),fc(t,0,1/3,1,2/3,"#c83c4a","#8f2633"),fc(t,0,2/3,1,1,"#249064","#176847"),e.circle(fb(.5,.19,t),fy(.5,.19,t),56,{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"hachure",hachureGap:8,fillWeight:.7,roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function i$(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1/3,1,"#176847","#0f4f37"),fc(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fc(t,2/3,0,1,1,"#c83c4a","#8f2633"),e.circle(fb(.5,.5,t),fy(.5,.5,t),58,{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"hachure",hachureGap:8,fillWeight:.45,roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function i_(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc");for(let e=0;e<14;e+=1)e%2==0&&fc(t,0,e/14,1,(e+1)/14,"#c83c4a","#8f2633");fc(t,0,0,.48,.55,"#253f78","#1b2c56"),e.circle(fb(.22,.28,t),fy(.22,.28,t),54,{stroke:"#b68b12",strokeWidth:1,fill:"#ffd84c",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fb(.26,.28,t),fy(.26,.28,t),48,{stroke:"#1b2c56",strokeWidth:1,fill:"#253f78",fillStyle:"solid",roughness:2.2,bowing:1.2}),fn(fb(.34,.28,t),fy(.34,.28,t),20,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function iR(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.3,"#249064","#176847"),fc(t,0,.35,1,.65,"#262d2b","#111615"),fc(t,0,.7,1,1,"#f0c83a","#a98218"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.42,.5,t),fy(.42,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fn(fb(.16,.5,t),fy(.16,.5,t),22,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function iD(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#253f78","#1b2c56"),e.polygon([[fb(1,0,t),fy(1,0,t)],[fb(0,1,t),fy(0,1,t)],[fb(1,1,t),fy(1,1,t)]],{stroke:"#176847",strokeWidth:1,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),fh(t,0,1,1,0,"#fbfdfa",38),fh(t,0,1,1,0,"#c83c4a",22),e.circle(fb(.2,.22,t),fy(.2,.22,t),48,{stroke:"#b68b12",strokeWidth:1,fill:"#ffd84c",fillStyle:"hachure",hachureGap:7,fillWeight:.7,roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function iz(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.24,.5,t),f=fy(.24,.5,t);h7(i),h9(i,"#c83c4a","#8f2633"),fc(t,0,0,1,1/3,"#253f78","#1b2c56"),fc(t,0,1/3,1,2/3,"#c83c4a","#8f2633"),fc(t,0,2/3,1,1,"#249064","#176847"),e.circle(h,f,86,{stroke:"#111615",strokeWidth:2,fill:"#f0c83a",fillStyle:"hachure",hachureGap:8,fillWeight:.6,roughness:2.3,bowing:1.2}),e.line(h,f-34,h,f+36,{stroke:"#111615",strokeWidth:4,roughness:2.3,bowing:1.6}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b3538"),ft(t)}function iA(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#ee8b2c","#a9601d"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#249064","#176847"),e.circle(fb(.5,.5,t),fy(.5,.5,t),42,{stroke:"#a9601d",strokeWidth:1,fill:"#ee8b2c",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#756b4d"),ft(t)}function iq(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.5,.5,t),f=fy(.5,.5,t);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1/3,1,"#176847","#0f4f37"),fc(t,2/3,0,1,1,"#176847","#0f4f37"),[0,1,2].forEach(t=>{e.polygon([[h,f-76+34*t],[h-48+8*t,f-26+28*t],[h+48-8*t,f-26+28*t]],{stroke:"#0f4f37",strokeWidth:1,fill:"#176847",fillStyle:"solid",roughness:2.2,bowing:1.2})}),e.line(h,f-24,h,f+78,{stroke:"#6f4f28",strokeWidth:4,roughness:2.3,bowing:1.6}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),ft(t)}function ij(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1/3,1,"#249064","#176847"),fc(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fc(t,2/3,0,1,1,"#249064","#176847"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),ft(t)}function iX(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#2f78bd","#20588e"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#2f78bd","#20588e"),fl(t,.5,.5,"#f0c83a","#2f78bd"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3d6e98"),ft(t)}function iY(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#b63842","#7d2530"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#2f4f9d","#203a74"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#634b67"),ft(t)}function iF(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#c83c4a","#8f2633"),fc(t,.28,0,.46,1,"#fbfdfa","#c7d1cc"),fc(t,0,.36,1,.58,"#fbfdfa","#c7d1cc"),fc(t,.33,0,.41,1,"#253f78","#1b2c56"),fc(t,0,.43,1,.51,"#253f78","#1b2c56"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function iV(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),e.polygon([[fb(.26,.08,t),fy(.26,.08,t)],[fb(.72,.38,t),fy(.72,.38,t)],[fb(.38,.42,t),fy(.38,.42,t)],[fb(.74,.86,t),fy(.74,.86,t)],[fb(.26,.86,t),fy(.26,.86,t)]],{stroke:"#203a74",strokeWidth:10,fill:"#c83c4a",fillStyle:"solid",roughness:2.4,bowing:1.4}),fd(fb(.42,.32,t),fy(.42,.32,t),20,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),e.circle(fb(.44,.68,t),fy(.44,.68,t),36,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2})}function iZ(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#253f78","#1b2c56"),fc(t,0,.52,1,.58,"#f0c83a","#a98218"),fd(fb(.28,.72,t),fy(.28,.72,t),24,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function iQ(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fi(t),[[.72,.3],[.84,.46],[.68,.62],[.82,.75]].forEach(([e,i],h)=>fd(fb(e,i,t),fy(e,i,t),0===h?16:10,-18+5*h,{stroke:"#203a74",fill:"#253f78",hatch:"rgba(37, 63, 120, 0.6)"})),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function iH(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#243f78","#1b2c56"),fi(t),[[.72,.28,14],[.84,.44,12],[.68,.58,14],[.8,.72,9]].forEach(([e,i,h],f)=>fd(fb(e,i,t),fy(e,i,t),h,-18+5*f,{stroke:"#fbfdfa",fill:"#c83c4a",hatch:"rgba(251, 253, 250, 0.5)"})),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function iN(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,.25,1,"#c83c4a","#8f2633"),fc(t,.25,0,1,1/3,"#fbfdfa","#c7d1cc"),fc(t,.25,1/3,1,2/3,"#c83c4a","#8f2633"),fc(t,.25,2/3,1,1,"#249064","#176847"),fl(t,.125,.2,"#fbfdfa","#c7d1cc"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function iB(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,.5,.5,"#fbfdfa","#c7d1cc"),fc(t,.5,0,1,.5,"#c83c4a","#8f2633"),fc(t,0,.5,.5,1,"#2f4f9d","#203a74"),fc(t,.5,.5,1,1,"#fbfdfa","#c7d1cc"),fd(fb(.25,.25,t),fy(.25,.25,t),22,-18,{stroke:"#203a74",fill:"#2f4f9d",hatch:"#4770bd"}),fd(fb(.75,.75,t),fy(.75,.75,t),22,-18,{stroke:"#8f2633",fill:"#c83c4a",hatch:"#d8585f"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function iU(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1/3,1,"#c83c4a","#8f2633"),fc(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fc(t,2/3,0,1,1,"#c83c4a","#8f2633"),fl(t,.5,.5,"#f0c83a","#249064"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function iJ(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.25,"#c83c4a","#8f2633"),fc(t,0,.75,1,1,"#c83c4a","#8f2633"),e.circle(fb(.5,.5,t),fy(.5,.5,t),92,{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"hachure",hachureGap:8,fillWeight:.5,roughness:2.2,bowing:1.2}),e.line(fb(.42,.54,t),fy(.42,.54,t),fb(.58,.54,t),fy(.58,.54,t),{stroke:"#c83c4a",strokeWidth:4,roughness:2.3,bowing:1.5}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function iK(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#262d2b","#111615"),e.polygon([[fb(1,0,t),fy(1,0,t)],[fb(1,1,t),fy(1,1,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fn(fb(.28,.3,t),fy(.28,.3,t),14,-18),fn(fb(.4,.45,t),fy(.4,.45,t),10,-12),e.line(fb(.62,.3,t),fy(.62,.3,t),fb(.82,.42,t),fy(.82,.42,t),{stroke:"#f0c83a",strokeWidth:5,roughness:2.4,bowing:1.8}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function i2(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.5,"#253f78","#1b2c56"),fc(t,0,.5,1,1,"#c83c4a","#8f2633"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.42,.5,t),fy(.42,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fb(.17,.5,t),fy(.17,.5,t),34,{stroke:"#b68b12",strokeWidth:1,fill:"#ffd84c",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function i1(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#176847","#0f4f37"),fc(t,0,0,.25,1,"#fbfdfa","#c7d1cc"),e.circle(fb(.58,.47,t),fy(.58,.47,t),.35*t.height,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fb(.64,.45,t),fy(.64,.45,t),.31*t.height,{stroke:"#0f4f37",strokeWidth:1,fill:"#176847",fillStyle:"solid",roughness:2.3,bowing:1.2}),fd(fb(.68,.34,t),fy(.68,.34,t),24,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),ft(t)}function i3(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.5,"#fbfdfa","#c7d1cc"),fc(t,0,.5,1,1,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function i0(){tl()}function i4(){fe("#243f78","#1b2c56","#fbfdfa","#249064")}function i8(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc");for(let e=0;e<5;e+=1)e%2==0&&fc(t,0,e/5,1,(e+1)/5,"#c83c4a","#8f2633");e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.42,.5,t),fy(.42,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#203a74",strokeWidth:1.2,fill:"#253f78",fillStyle:"solid",roughness:2.2,bowing:1.2}),fd(fb(.16,.5,t),fy(.16,.5,t),20,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function i5(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#262d2b","#111615"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#249064","#176847"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.38,.5,t),fy(.38,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function i6(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#c83c4a","#8f2633"),fc(t,0,0,.4,1,"#176847","#0f4f37"),fc(t,.4,0,1,1,"#c83c4a","#8f2633"),e.circle(fb(.4,.5,t),fy(.4,.5,t),72,{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"hachure",hachureGap:8,fillWeight:.5,roughness:2.2,bowing:1.2}),fl(t,.4,.5,"#fbfdfa","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function i7(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#4f9fd3","#2c6f9b"),e.circle(fb(.43,.5,t),fy(.43,.5,t),118,{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"hachure",hachureGap:9,fillWeight:.6,roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),ft(t)}function i9(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#c83c4a","#8f2633"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#253f78","#1b2c56"),fl(t,.5,.5,"#f0c83a","#249064"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function ht(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=[[fb(.25,0,t),fy(.25,0,t)]];for(let e=0;e<9;e+=1)h.push([fb(.36,(e+.5)/9,t),fy(.36,(e+.5)/9,t)]),h.push([fb(.25,(e+1)/9,t),fy(.25,(e+1)/9,t)]);h7(i),h9(i,"#7b314b","#572439"),e.polygon([[fb(0,0,t),fy(0,0,t)],...h,[fb(0,1,t),fy(0,1,t)]],{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#572439"),ft(t)}function he(){tl()}function hi(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,0,0,1/3,1,"#2f4f9d","#203a74"),fc(t,1/3,0,2/3,1,"#f0c83a","#a98218"),fc(t,2/3,0,1,1,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#705c4d"),ft(t)}function hh(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#c83c4a","#8f2633"),fc(t,0,1/3,1,2/3,"#253f78","#1b2c56"),fc(t,0,2/3,1,1,"#fbfdfa","#c7d1cc"),fl(t,.32,.5,"#fbfdfa","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function hf(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#fbfdfa","#c7d1cc"),fc(t,0,1/3,1,2/3,"#2f4f9d","#203a74"),fc(t,0,2/3,1,1,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function hc(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#4f9fd3","#2c6f9b"),fc(t,0,0,1,.5,"#4f9fd3","#2c6f9b"),fc(t,0,.5,1,.75,"#f0c83a","#a98218"),fc(t,0,.75,1,1,"#249064","#176847"),fn(fb(.82,.24,t),fy(.82,.24,t),28,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#477aa5"),ft(t)}function hl(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#176847","#0f4f37"),e.line(fb(.28,.42,t),fy(.28,.42,t),fb(.72,.42,t),fy(.72,.42,t),{stroke:"#fbfdfa",strokeWidth:5,roughness:2.4,bowing:1.6}),e.line(fb(.34,.6,t),fy(.34,.6,t),fb(.68,.56,t),fy(.68,.56,t),{stroke:"#fbfdfa",strokeWidth:4,roughness:2.4,bowing:1.8}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),ft(t)}function ho(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#2f78bd","#20588e"),e.polygon([[fb(0,1,t),fy(0,1,t)],[fb(1,0,t),fy(1,0,t)],[fb(1,1,t),fy(1,1,t)]],{stroke:"#176847",strokeWidth:1,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),fh(t,0,1,1,0,"#f0c83a",32),[[.18,.18],[.28,.18],[.23,.28],[.15,.34],[.31,.34]].forEach(([e,i],h)=>fn(fb(e,i,t),fy(e,i,t),8,-18+h)),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3d6e98"),ft(t)}function ha(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=[fb(0,1,t),fy(0,1,t)];h7(i),h9(i,"#253f78","#1b2c56"),[["#253f78",0,.18,"#1b2c56"],["#f0c83a",.18,.38,"#a98218"],["#c83c4a",.38,.58,"#8f2633"],["#fbfdfa",.58,.78,"#c7d1cc"],["#249064",.78,1,"#176847"]].forEach(([i,f,c,l])=>{e.polygon([h,[fb(f,0,t),fy(f,0,t)],[fb(c,0,t),fy(c,0,t)]],{stroke:l,strokeWidth:1,fill:i,fillStyle:"solid",roughness:2.2,bowing:1.2})}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function hs(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#c83c4a","#8f2633"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#262d2b","#111615"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.36,.5,t),fy(.36,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#176847",strokeWidth:1.2,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function hn(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#2f78bd","#20588e"),fc(t,.28,0,.42,1,"#f0c83a","#a98218"),fc(t,0,.4,1,.56,"#f0c83a","#a98218"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3d6e98"),ft(t)}function hd(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.5,"#c83c4a","#8f2633"),fc(t,0,.5,1,1,"#fbfdfa","#c7d1cc"),e.circle(fb(.22,.25,t),fy(.22,.25,t),.24*t.height,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fb(.26,.25,t),fy(.26,.25,t),.2*t.height,{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),[[.34,.15],[.39,.21],[.38,.31],[.3,.35],[.28,.23]].forEach(([e,i],h)=>{fd(fb(e,i,t),fy(e,i,t),8,-18+5*h,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"})}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function hr(){fe("#243f78","#1b2c56","#fbfdfa","#f0c83a")}function hg(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#fbfdfa","#c7d1cc"),fc(t,0,1/3,1,2/3,"#253f78","#1b2c56"),fc(t,0,2/3,1,1,"#c83c4a","#8f2633"),fl(t,.28,.38,"#fbfdfa","#253f78"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function hu(){iF()}function hb(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#fbfdfa","#c7d1cc"),fc(t,0,1/3,1,2/3,"#253f78","#1b2c56"),fc(t,0,2/3,1,1,"#c83c4a","#8f2633"),fl(t,.28,.5,"#fbfdfa","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function hy(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#249064","#176847"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#4f9fd3","#2c6f9b"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),ft(t)}function hw(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.5,"#fbfdfa","#c7d1cc"),fc(t,0,.5,1,1,"#75a9d8","#477aa5"),fl(t,.5,.5,"#f0c83a","#249064"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#477aa5"),ft(t)}function hk(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,0,0,1/3,1,"#249064","#176847"),fc(t,1/3,0,2/3,1,"#f0c83a","#a98218"),fc(t,2/3,0,1,1,"#c83c4a","#8f2633"),fd(fb(.5,.5,t),fy(.5,.5,t),30,-18,{stroke:"#176847",fill:"#249064",hatch:"#38a975"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function hx(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#4f9fd3","#2c6f9b"),fd(fb(.5,.5,t),fy(.5,.5,t),44,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),ft(t)}function hp(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#249064","#176847"),fc(t,0,0,1,.2,"#249064","#176847"),fc(t,0,.2,1,.3,"#fbfdfa","#c7d1cc"),fc(t,0,.3,1,.7,"#c83c4a","#8f2633"),fc(t,0,.7,1,.8,"#fbfdfa","#c7d1cc"),fc(t,0,.8,1,1,"#249064","#176847"),fn(fb(.5,.5,t),fy(.5,.5,t),34,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function hW(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.3,"#262d2b","#111615"),fc(t,0,.36,1,.64,"#c83c4a","#8f2633"),fc(t,0,.7,1,1,"#249064","#176847"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.42,.5,t),fy(.42,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#203a74",strokeWidth:1.2,fill:"#253f78",fillStyle:"solid",roughness:2.2,bowing:1.2}),fn(fb(.16,.5,t),fy(.16,.5,t),22,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function hM(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#f0c83a","#a98218"),fc(t,0,0,1,.25,"#249064","#176847"),fc(t,0,.75,1,1,"#249064","#176847"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.34,.5,t),fy(.34,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fd(fb(.48,.5,t),fy(.48,.5,t),18,-18,{stroke:"#111615",fill:"#262d2b",hatch:"rgba(38, 45, 43, 0.7)"}),fd(fb(.64,.5,t),fy(.64,.5,t),18,-18,{stroke:"#111615",fill:"#262d2b",hatch:"rgba(38, 45, 43, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function hm(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#253f78","#1b2c56"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#253f78","#1b2c56"),fl(t,.5,.5,"#f0c83a","#249064"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#4d5d86"),ft(t)}function hS(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#253f78","#1b2c56"),fc(t,0,0,1,.5,"#c83c4a","#8f2633"),fc(t,0,.5,1,1,"#253f78","#1b2c56"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.46,.5,t),fy(.46,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),fl(t,.16,.5,"#f0c83a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function hP(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#c83c4a","#8f2633"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#262d2b","#111615"),fd(fb(.42,.5,t),fy(.42,.5,t),20,-18,{stroke:"#176847",fill:"#249064",hatch:"#38a975"}),fd(fb(.58,.5,t),fy(.58,.5,t),20,-18,{stroke:"#176847",fill:"#249064",hatch:"#38a975"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function hv(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#c83c4a","#8f2633"),fc(t,0,0,1,.18,"#253f78","#1b2c56"),fc(t,0,.18,1,.26,"#f0c83a","#a98218"),fc(t,0,.74,1,.82,"#f0c83a","#a98218"),fc(t,0,.82,1,1,"#253f78","#1b2c56"),fl(t,.5,.5,"#fbfdfa","#262d2b"),e.line(fb(.32,.5,t),fy(.32,.5,t),fb(.68,.5,t),fy(.68,.5,t),{stroke:"#6f4f28",strokeWidth:3,roughness:2.3,bowing:1.5}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function hG(){fe("#243f78","#1b2c56","#f0c83a","#249064")}function hI(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,0,0,1/3,1,"#253f78","#1b2c56"),fc(t,1/3,0,2/3,1,"#f0c83a","#a98218"),fc(t,2/3,0,1,1,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#705b4a"),ft(t)}function hE(){tl()}function hO(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#249064","#176847");for(let e=0;e<5;e+=1)fc(t,0,e/5,1,(e+1)/5,e%2==0?"#249064":"#f0c83a",e%2==0?"#176847":"#a98218");fc(t,0,0,.38,.6,"#c83c4a","#8f2633"),fd(fb(.19,.3,t),fy(.19,.3,t),20,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function hL(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.28,"#c83c4a","#8f2633"),fc(t,0,.28,1,.72,"#fbfdfa","#c7d1cc"),fc(t,0,.72,1,1,"#249064","#176847"),e.circle(fb(.5,.5,t),fy(.5,.5,t),42,{stroke:"#a98218",strokeWidth:1,fill:"#f0c83a",fillStyle:"hachure",hachureGap:7,fillWeight:.6,roughness:2.2,bowing:1.2}),fn(fb(.5,.42,t),fy(.5,.42,t),12,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function hC(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#253f78","#1b2c56"),e.circle(fb(.24,.34,t),fy(.24,.34,t),64,{stroke:"#a98218",strokeWidth:1,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fb(.28,.34,t),fy(.28,.34,t),58,{stroke:"#1b2c56",strokeWidth:1,fill:"#253f78",fillStyle:"solid",roughness:2.2,bowing:1.2}),[[.68,.34],[.82,.48],[.66,.64],[.78,.76]].forEach(([e,i],h)=>fn(fb(e,i,t),fy(e,i,t),0===h?12:9,-18+h)),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function hT(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#c83c4a","#8f2633"),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.62,.5,t),fy(.62,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.42,.5,t),fy(.42,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#111615",strokeWidth:1.2,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),fd(fb(.16,.5,t),fy(.16,.5,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function h$(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#176847","#0f4f37"),fc(t,.12,.08,.22,.92,"#8b2934","#63202a");for(let i=0;i<5;i+=1)e.line(fb(.13,.14+.15*i,t),fy(.13,.14+.15*i,t),fb(.21,.18+.15*i,t),fy(.21,.18+.15*i,t),{stroke:"#f0c83a",strokeWidth:1.4,roughness:2.1,bowing:1.4});e.circle(fb(.42,.36,t),fy(.42,.36,t),54,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fb(.46,.36,t),fy(.46,.36,t),48,{stroke:"#0f4f37",strokeWidth:1,fill:"#176847",fillStyle:"solid",roughness:2.2,bowing:1.2}),fn(fb(.58,.34,t),fy(.58,.34,t),11,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),ft(t)}function h_(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#c83c4a","#8f2633"),e.circle(fb(.5,.5,t),fy(.5,.5,t),.44*t.height,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fb(.48,.5,t),fy(.48,.5,t),.25*t.height,{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fb(.53,.5,t),fy(.53,.5,t),.21*t.height,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),fd(fb(.58,.5,t),fy(.58,.5,t),20,-18,{stroke:"#8f2633",fill:"#c83c4a",hatch:"#d8585f"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function hR(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#c83c4a","#8f2633"),fc(t,0,0,.42,.46,"#fbfdfa","#c7d1cc"),fc(t,.16,.08,.26,.38,"#c83c4a","#8f2633"),fc(t,.08,.18,.34,.28,"#c83c4a","#8f2633"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function hD(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#c83c4a","#8f2633"),e.circle(fb(.42,.5,t),fy(.42,.5,t),.36*t.height,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fb(.47,.5,t),fy(.47,.5,t),.29*t.height,{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.3,bowing:1.2}),fd(fb(.59,.5,t),fy(.59,.5,t),26,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function hz(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#c83c4a","#8f2633"),fh(t,0,0,1,1,"#fbfdfa",48),fh(t,0,0,1,1,"#262d2b",28),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function hA(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#75a9d8","#477aa5"),fi(t),[[.7,.28],[.84,.42],[.74,.58],[.88,.7],[.62,.74]].forEach(([e,i],h)=>fn(fb(e,i,t),fy(e,i,t),9,-18+h)),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#477aa5"),ft(t)}function hq(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#249064","#176847"),e.polygon([[fb(1,0,t),fy(1,0,t)],[fb(1,1,t),fy(1,1,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#2c6f9b",strokeWidth:1,fill:"#4f9fd3",fillStyle:"solid",roughness:2.2,bowing:1.2}),fh(t,0,1,1,0,"#f0c83a",46),fh(t,0,1,1,0,"#262d2b",28),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),ft(t)}function hj(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,0,0,1,.5,"#3d78bd","#284f84"),fc(t,0,.5,1,1,"#f0c83a","#a98218"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#5d7653"),ft(t)}function hX(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#262d2b","#111615"),["#262d2b","#f0c83a","#c83c4a","#262d2b","#f0c83a","#c83c4a"].forEach((e,i)=>{fc(t,0,i/6,1,(i+1)/6,e,"#262d2b"===e?"#111615":"#f0c83a"===e?"#a98218":"#8f2633")}),e.circle(fb(.5,.5,t),fy(.5,.5,t),76,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.line(fb(.48,.42,t),fy(.48,.42,t),fb(.56,.58,t),fy(.56,.58,t),{stroke:"#262d2b",strokeWidth:4,roughness:2.3,bowing:1.5}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#705b4a"),ft(t)}function hY(){var t;let i,h,f,c,l,o,a,s,n=h6(),d=fa(n.x,n.y,n.width,n.height);h7(d),h9(d,"#5b9bd5","#3a76a8"),i=fb(.5,.52,t=n),h=fy(.52,.52,t),c=(f=.22*t.width)/2,l="#fbfdfa",o={stroke:"#e3eff8",strokeWidth:1,roughness:2.1,bowing:1.3},e.circle(i,h,f,{stroke:l,strokeWidth:1.2,fill:l,fillStyle:"solid",roughness:2.1,bowing:1.2}),e.line(i,h-c,i,h+c,o),e.line(i-c,h,i+c,h,o),e.line(i-.72*c,h-.38*c,i+.72*c,h+.38*c,o),e.line(i-.72*c,h+.38*c,i+.72*c,h-.38*c,o),a=1.48*c,ff(i,h+(s=.1*c),a,5*Math.PI/6,Math.PI/2,l),ff(i,h+s,a,Math.PI/6,Math.PI/2,l),fs(n.x+14,n.y+22,n.width-36,n.height-50,"#3d7aad"),ft(n)}function hF(){th()}function hV(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc");for(let e=1;e<9;e+=2)fc(t,0,e/9,1,(e+1)/9,"#2f78bd","#20588e");fc(t,0,0,.34,5/9,"#fbfdfa","#c7d1cc"),e.circle(fb(.17,.27,t),fy(.17,.27,t),40,{stroke:"#b68b12",strokeWidth:1.2,fill:"#ffd84c",fillStyle:"hachure",hachureGap:7,fillWeight:.8,roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#3d6e98"),ft(t)}function hZ(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,.32,"#4f9fd3","#2c6f9b"),fc(t,0,.35,1,.65,"#fbfdfa","#c7d1cc"),fc(t,0,.68,1,1,"#249064","#176847"),fc(t,0,.32,1,.35,"#c83c4a","#8f2633"),fc(t,0,.65,1,.68,"#c83c4a","#8f2633"),e.circle(fb(.22,.16,t),fy(.22,.16,t),36,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fb(.25,.16,t),fy(.25,.16,t),32,{stroke:"#2c6f9b",strokeWidth:1,fill:"#4f9fd3",fillStyle:"solid",roughness:2.2,bowing:1.2}),fn(fb(.36,.14,t),fy(.36,.14,t),8,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#477aa5"),ft(t)}function hQ(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#f0c83a","#a98218"),fc(t,0,0,.25,1,"#2f78bd","#20588e"),fc(t,.25,0,.75,1,"#f0c83a","#a98218"),fc(t,.75,0,1,1,"#249064","#176847"),[[.45,.48],[.55,.48],[.5,.6]].forEach(([i,h])=>{e.polygon([[fb(i,h-.06,t),fy(i,h-.06,t)],[fb(i+.04,h,t),fy(i+.04,h,t)],[fb(i,h+.06,t),fy(i,h+.06,t)],[fb(i-.04,h,t),fy(i-.04,h,t)]],{stroke:"#176847",strokeWidth:1,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2})}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function hH(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#f0c83a","#a98218"),fc(t,0,0,1,1/3,"#f0c83a","#a98218"),fc(t,0,1/3,1,2/3,"#253f78","#1b2c56"),fc(t,0,2/3,1,1,"#c83c4a","#8f2633");for(let e=0;e<8;e+=1){let i=Math.PI*(.95+.1*e);fd(fb(.5+.22*Math.cos(i),.5,t),fy(.5+.22*Math.cos(i),.5+.18*Math.sin(i),t),8,-18+e,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251,253,250,0.7)"})}fs(t.x+14,t.y+22,t.width-36,t.height-50,"#705b4a"),ft(t)}function hN(){fe("#243f78","#1b2c56","#fbfdfa","#249064")}function hB(){let t=h6(),i=fa(t.x,t.y,t.width,t.height),h=fb(.5,.48,t),f=fy(.5,.48,t);h7(i),h9(i,"#fbfdfa","#c7d1cc"),fn(h,f-20,26,-18),e.line(h-70,f+50,h-32,f+10,{stroke:"#2f4f9d",strokeWidth:4,roughness:2.3,bowing:1.5}),e.line(h+70,f+50,h+32,f+10,{stroke:"#249064",strokeWidth:4,roughness:2.3,bowing:1.5}),e.line(h-28,f+28,h+28,f+28,{stroke:"#f0c83a",strokeWidth:5,roughness:2.3,bowing:1.5}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#cbd8ce"),ft(t)}function hU(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#c83c4a","#8f2633"),fn(fb(.5,.5,t),fy(.5,.5,t),54,-18),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function hJ(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#c83c4a","#8f2633"),fc(t,0,.5,1,1,"#249064","#176847"),fh(t,0,.5,1,.5,"#f0c83a",34),fh(t,0,.5,1,.18,"#f0c83a",28),fh(t,0,.5,1,.82,"#f0c83a",28),fh(t,0,.5,1,.5,"#262d2b",18),fh(t,0,.5,1,.18,"#262d2b",14),fh(t,0,.5,1,.82,"#262d2b",14),e.circle(fb(.16,.5,t),fy(.16,.5,t),46,{stroke:"#f0c83a",strokeWidth:2,fill:"transparent",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function hK(){tl()}function h2(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#c83c4a","#8f2633"),fc(t,0,0,.48,.55,"#253f78","#1b2c56"),[[.2,.18,11],[.34,.27,9],[.24,.39,11],[.38,.44,8]].forEach(([e,i,h],f)=>fd(fb(e,i,t),fy(e,i,t),h,-18+f,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251,253,250,0.7)"})),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),ft(t)}function h1(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#253f78","#1b2c56"),e.polygon([[fb(.42,.48,t),fy(.42,.48,t)],[fb(.58,.42,t),fy(.58,.42,t)],[fb(.66,.62,t),fy(.66,.62,t)],[fb(.48,.72,t),fy(.48,.72,t)]],{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"hachure",hachureGap:8,fillWeight:.6,roughness:2.2,bowing:1.2});for(let e=0;e<6;e+=1)fn(fb(.34+.065*e,.3,t),fy(.34+.065*e,.3,t),8,-18+e);fs(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),ft(t)}function h3(){let t=h6(),e=fa(t.x,t.y,t.width,t.height);h7(e),h9(e,"#fbfdfa","#c7d1cc"),fc(t,0,0,1,1/3,"#c83c4a","#8f2633"),fc(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fc(t,0,2/3,1,1,"#262d2b","#111615"),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),ft(t)}function h0(){tl()}function h4(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#c83c4a","#8f2633"),fc(t,0,.5,1,1,"#253f78","#1b2c56"),fh(t,0,.5,1,.5,"#fbfdfa",58),fh(t,0,.5,1,.22,"#fbfdfa",48),fh(t,0,.5,1,.78,"#fbfdfa",48),fh(t,0,.5,1,.5,"#f0c83a",40),fh(t,0,.5,1,.22,"#249064",30),fh(t,0,.5,1,.78,"#249064",30),e.polygon([[fb(0,.1,t),fy(0,.1,t)],[fb(.32,.5,t),fy(.32,.5,t)],[fb(0,.9,t),fy(0,.9,t)]],{stroke:"#111615",strokeWidth:1.2,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),ft(t)}function h8(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#176847","#0f4f37"),fc(t,.72,.55,.8,1,"#c83c4a","#8f2633"),fc(t,.8,.55,.88,1,"#262d2b","#111615"),fc(t,.88,.55,.96,1,"#ee8b2c","#a9601d"),e.line(fb(.76,.32,t),fy(.76,.32,t),fb(.92,.28,t),fy(.92,.28,t),{stroke:"#ee8b2c",strokeWidth:5,roughness:2.4,bowing:1.8}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),ft(t)}function h5(){let t=h6(),i=fa(t.x,t.y,t.width,t.height);h7(i),h9(i,"#262d2b","#111615"),["#249064","#f0c83a","#c83c4a","#262d2b","#c83c4a","#f0c83a","#249064"].forEach((e,i)=>fc(t,0,i/7,1,(i+1)/7,e,"#262d2b"===e?"#111615":fk(e,.75))),e.polygon([[fb(0,0,t),fy(0,0,t)],[fb(.42,.5,t),fy(.42,.5,t)],[fb(0,1,t),fy(0,1,t)]],{stroke:"#111615",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),fd(fb(.16,.5,t),fy(.16,.5,t),28,-18,{stroke:"#8f2633",fill:"#c83c4a",hatch:"#d8585f"}),e.line(fb(.16,.47,t),fy(.16,.47,t),fb(.26,.53,t),fy(.26,.53,t),{stroke:"#f0c83a",strokeWidth:4,roughness:2.3,bowing:1.5}),fs(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),ft(t)}function h6(){return{x:118,y:174,width:486,height:342}}function h7(t){e.polygon(fw(t,8,10),{stroke:"transparent",fill:l,fillStyle:"solid",roughness:2.2,bowing:1.2})}function h9(t,i,h){e.polygon(t,{stroke:h,strokeWidth:2.4,fill:i,fillStyle:"solid",roughness:2.4,bowing:1.4})}function ft(t){e.polygon(fa(t.x,t.y,t.width,t.height),{stroke:"#28332e",strokeWidth:2,fill:"transparent",roughness:2.8,bowing:1.6})}function fe(t,e,i,h){let f=h6(),c=fa(f.x,f.y,f.width,f.height);h7(c),h9(c,t,e),fc(f,0,0,1,1,t,e),fi(f),fl(f,.74,.54,i,h),fs(f.x+14,f.y+22,f.width-36,f.height-50,e),ft(f)}function fi(t){let e={x:t.x,y:t.y,width:.5*t.width,height:.5*t.height};fc(e,0,0,1,1,"#314d7c","#20375e"),fh(e,0,0,1,1,"#fbfdfa",13),fh(e,1,0,0,1,"#fbfdfa",13),fh(e,0,0,1,1,"#c83c4a",5),fh(e,1,0,0,1,"#c83c4a",5),fc(e,.42,0,.58,1,"#fbfdfa","#c7d1cc"),fc(e,0,.38,1,.62,"#fbfdfa","#c7d1cc"),fc(e,.46,0,.54,1,"#c83c4a","#8f2633"),fc(e,0,.44,1,.56,"#c83c4a","#8f2633")}function fh(t,i,h,f,c,l,o){e.line(fb(i,h,t),fy(i,h,t),fb(f,c,t),fy(f,c,t),{stroke:l,strokeWidth:o,roughness:2.4,bowing:1.6})}function ff(t,i,h,f,c,l){let o=t+Math.cos(f)*h,a=i+Math.sin(f)*h;for(let s=1;s<=11;s+=1){let n=f+(c-f)*s/11,d=t+Math.cos(n)*h+fp(.8),r=i+Math.sin(n)*h+fp(.8);e.line(o,a,d,r,{stroke:l,strokeWidth:2.1,roughness:2.4,bowing:1.6}),o=d,a=r}}function fc(t,i,h,f,c,l,o){e.polygon(fu(i,h,f,c,t),{stroke:o,strokeWidth:1.2,fill:l,fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon(fu(i,h,f,c,t),{stroke:fk(o,.28),strokeWidth:.65,fill:l,fillStyle:"hachure",hachureAngle:-12,hachureGap:12,fillWeight:.55,roughness:2})}function fl(t,i,h,f,c){let l=fb(i,h,t),o=fy(i,h,t),a=.13*t.width,s=.22*t.height;e.polygon([[l-a/2,o-s/2],[l+a/2,o-s/2],[l+.42*a,o+.16*s],[l,o+s/2],[l-.42*a,o+.16*s]],{stroke:fk(c,.75),strokeWidth:1.2,fill:f,fillStyle:"solid",roughness:2.2,bowing:1.15}),e.line(l-.32*a,o,l+.32*a,o,{stroke:c,strokeWidth:1,roughness:2.1,bowing:1.4}),e.line(l,o-.36*s,l,o+.28*s,{stroke:c,strokeWidth:1,roughness:2.1,bowing:1.4})}function fo(t,i,h,f,c){let l=fb(i,h,t),o=fy(i,h,t),a=f*Math.PI/180,s=Math.cos(a),n=Math.sin(a),d=.17*t.width,r=.044*t.height,g=.032*t.width,u=(t,e)=>[l+t*s-e*n,o+t*n+e*s];c.forEach((t,i)=>{let h=(i-1)*r;if(t){let[t,i]=u(-d/2,h),[f,c]=u(d/2,h);e.line(t,i,f,c,{stroke:"#262d2b",strokeWidth:5.2,roughness:2.1,bowing:1.45});return}[[-d/2,-g],[g,d/2]].forEach(([t,i])=>{let[f,c]=u(t,h),[l,o]=u(i,h);e.line(f,c,l,o,{stroke:"#262d2b",strokeWidth:5.2,roughness:2.1,bowing:1.45})})})}function fa(t,e,i,h){let f=[];for(let h=0;h<=6;h+=1)f.push([t+i*h/6+fp(2.2),e+fp(5.2)]);for(let c=0;c<=6;c+=1)f.push([t+i+fp(5.2),e+h*c/6+fp(2.2)]);for(let c=6;c>=0;c-=1)f.push([t+i*c/6+fp(2.2),e+h+fp(5.2)]);for(let i=6;i>=0;i-=1)f.push([t+fp(5.2),e+h*i/6+fp(2.2)]);return f}function fs(t,i,h,f,c){for(let l=0;l<5;l+=1){let o=t+h*(l+.6)/7+fp(10);e.line(o,i+fp(14),o+fp(18),i+f+fp(14),{stroke:c,strokeWidth:fx(.55,1.05),roughness:2.2,bowing:2.4})}for(let l=0;l<3;l+=1){let o=i+f*(l+.8)/5+fp(8);e.line(t+fp(10),o,t+h+fp(10),o+fp(18),{stroke:c,strokeWidth:fx(.45,.85),roughness:2.4,bowing:1.9})}}function fn(t,e,i,h){fd(t,e,i,h,{stroke:"#b68b12",fill:"#ffd84c",hatch:"#ffec62"})}function fd(t,i,h,f,c){let l=[],o=f*Math.PI/180-Math.PI/2;for(let e=0;e<10;e+=1){let f=o+e*Math.PI/5,c=e%2==0?h:.42*h;l.push([t+Math.cos(f)*c+fp(.05*h),i+Math.sin(f)*c+fp(.05*h)])}e.polygon(l,{stroke:c.stroke,strokeWidth:Math.max(1.2,.08*h),fill:c.fill,fillStyle:"solid",roughness:2.3,bowing:1.2}),e.polygon(l,{stroke:c.hatch,strokeWidth:Math.max(.8,.04*h),fill:c.fill,fillStyle:"hachure",hachureAngle:-22,hachureGap:Math.max(6,.22*h),fillWeight:1,roughness:2.2})}function fr(t){return t.saturation<28&&t.brightness>110?{red:250,green:252,blue:249,brightness:250.3,saturation:3}:t}function fg(t,e,i,h,f){var c;let l,o,a,s,n,d,r,g=(l=(c=t.cells).reduce((t,e)=>(t.red+=e.metrics.red,t.green+=e.metrics.green,t.blue+=e.metrics.blue,t),{red:0,green:0,blue:0}),o=c.length||1,a=Math.round(l.red/o),s=Math.round(l.green/o),d=Math.max(a,s,n=Math.round(l.blue/o)),r=Math.min(a,s,n),{red:a,green:s,blue:n,brightness:(a+s+n)/3,saturation:d-r}),u=t.cells.filter(t=>t.isLightNeutral).length>.58*t.cells.length,b=t.startColumn/i,y=(t.endColumn+1)/i;return{color:`rgba(${g.red}, ${g.green}, ${g.blue}, ${u?.88:.98})`,metrics:g,isLightNeutral:u,area:(t.endColumn-t.startColumn+1)*f.width*f.height/(i*h),shouldTexture:e%4==0&&t.endColumn-t.startColumn>2,outline:fu(b,e/h,y,(e+1)/h,f)}}function fu(t,e,i,h,f){return[[t-.003,e-.004],[(t+i)/2,e-.004+fp(6e-4)],[i+.003,e-.004],[i+.003,(e+h)/2],[i+.003,h+.004],[(t+i)/2,h+.004+fp(6e-4)],[t-.003,h+.004],[t-.003,(e+h)/2]].map(([t,e])=>[fb(Math.min(1,Math.max(0,t)),Math.min(1,Math.max(0,e)),f)+fp(.45),fy(Math.min(1,Math.max(0,t)),Math.min(1,Math.max(0,e)),f)+fp(.45)])}function fb(t,e,i){return i.x+i.width*t}function fy(t,e,i){return i.y+i.height*e}function fw(t,e,i){return t.map(t=>[t[0]+e,t[1]+i])}function fk(t,e){let i=t.match(/rgba?\(([^)]+)\)/);return i?`rgba(${i[1].split(",").slice(0,3).join(",")}, ${e})`:t}function fx(t,e){return t+Math.random()*(e-t)}function fp(t){return fx(-t,t)}i=new class{templateDrawers={"🇦🇺":tf,"🇨🇳":te,"🇪🇸":ta,"🇫🇷":tl,"🇮🇹":to,"🇯🇵":ti,"🇹🇭":tc,"🇺🇸":th,"🇻🇦":ts,"🇦🇩":tn,"🇦🇪":td,"🇦🇫":tr,"🇦🇬":tg,"🇦🇮":tu,"🇦🇱":tb,"🇦🇲":ty,"🇦🇴":tw,"🇦🇶":tk,"🇦🇷":tx,"🇦🇸":tp,"🇦🇹":tW,"🇦🇼":tM,"🇦🇽":tm,"🇦🇿":tS,"🇧🇦":tP,"🇧🇧":tv,"🇧🇩":tG,"🇧🇪":tI,"🇧🇫":tE,"🇧🇬":tO,"🇧🇭":tL,"🇧🇮":tC,"🇧🇯":tT,"🇧🇱":t$,"🇧🇲":t_,"🇧🇳":tR,"🇧🇴":tD,"🇧🇶":tz,"🇧🇷":tA,"🇧🇸":tq,"🇧🇹":tj,"🇧🇻":tX,"🇧🇼":tY,"🇧🇾":tF,"🇧🇿":tV,"🇨🇦":tZ,"🇨🇨":tQ,"🇨🇩":tH,"🇨🇫":tN,"🇨🇬":tB,"🇨🇭":tU,"🇨🇮":tJ,"🇨🇰":tK,"🇨🇱":t2,"🇨🇲":t1,"🇨🇴":t3,"🇨🇷":t0,"🇨🇺":t4,"🇨🇻":t8,"🇨🇼":t5,"🇨🇽":t6,"🇨🇾":t7,"🇨🇿":t9,"🇩🇪":et,"🇩🇯":ee,"🇩🇰":ei,"🇩🇲":eh,"🇩🇴":ef,"🇩🇿":ec,"🇪🇨":el,"🇪🇪":eo,"🇪🇬":ea,"🇪🇭":es,"🇪🇷":en,"🇪🇹":ed,"🇫🇮":er,"🇫🇯":eg,"🇫🇰":eu,"🇫🇲":eb,"🇫🇴":ey,"🇬🇦":ew,"🇬🇧":ek,"🇬🇩":ex,"🇬🇪":ep,"🇬🇫":eW,"🇬🇬":eM,"🇬🇭":em,"🇬🇮":eS,"🇬🇱":eP,"🇬🇲":ev,"🇬🇳":eG,"🇬🇵":eI,"🇬🇶":eE,"🇬🇷":eO,"🇬🇸":eL,"🇬🇹":eC,"🇬🇺":eT,"🇬🇼":e$,"🇬🇾":e_,"🇭🇰":eR,"🇭🇲":eD,"🇭🇳":ez,"🇭🇷":eA,"🇭🇹":eq,"🇭🇺":ej,"🇮🇩":eX,"🇮🇪":eY,"🇮🇱":eF,"🇮🇲":eV,"🇮🇳":eZ,"🇮🇴":eQ,"🇮🇶":eH,"🇮🇷":eN,"🇮🇸":eB,"🇯🇪":eU,"🇯🇲":eJ,"🇯🇴":eK,"🇰🇪":e2,"🇰🇬":e1,"🇰🇭":e3,"🇰🇮":e0,"🇰🇲":e4,"🇰🇳":e8,"🇰🇵":e5,"🇰🇷":e6,"🇰🇼":e7,"🇰🇾":e9,"🇰🇿":it,"🇱🇦":ie,"🇱🇧":ii,"🇱🇨":ih,"🇱🇮":ic,"🇱🇰":il,"🇱🇷":io,"🇱🇸":ia,"🇱🇹":is,"🇱🇺":id,"🇱🇻":ir,"🇱🇾":ig,"🇲🇦":iu,"🇲🇨":ib,"🇲🇩":iy,"🇲🇪":iw,"🇲🇫":ik,"🇲🇬":ix,"🇲🇭":ip,"🇲🇰":iW,"🇲🇱":iM,"🇲🇲":im,"🇲🇳":iS,"🇲🇴":iP,"🇲🇵":iv,"🇲🇶":iG,"🇲🇷":iI,"🇲🇸":iE,"🇲🇹":iO,"🇲🇺":iL,"🇲🇻":iC,"🇲🇼":iT,"🇲🇽":i$,"🇲🇾":i_,"🇲🇿":iR,"🇳🇦":iD,"🇳🇨":iz,"🇳🇪":iA,"🇳🇫":iq,"🇳🇬":ij,"🇳🇮":iX,"🇳🇱":iY,"🇳🇴":iF,"🇳🇵":iV,"🇳🇷":iZ,"🇳🇺":iQ,"🇳🇿":iH,"🇴🇲":iN,"🇵🇦":iB,"🇵🇪":iU,"🇵🇫":iJ,"🇵🇬":iK,"🇵🇭":i2,"🇵🇰":i1,"🇵🇱":i3,"🇵🇲":i0,"🇵🇳":i4,"🇵🇷":i8,"🇵🇸":i5,"🇵🇹":i6,"🇵🇼":i7,"🇵🇾":i9,"🇶🇦":ht,"🇷🇪":he,"🇷🇴":hi,"🇷🇸":hh,"🇷🇺":hf,"🇷🇼":hc,"🇸🇦":hl,"🇸🇧":ho,"🇸🇨":ha,"🇸🇩":hs,"🇸🇪":hn,"🇸🇬":hd,"🇸🇭":hr,"🇸🇮":hg,"🇸🇯":hu,"🇸🇰":hb,"🇸🇱":hy,"🇸🇲":hw,"🇸🇳":hk,"🇸🇴":hx,"🇸🇷":hp,"🇸🇸":hW,"🇸🇹":hM,"🇸🇻":hm,"🇸🇽":hS,"🇸🇾":hP,"🇸🇿":hv,"🇹🇨":hG,"🇹🇩":hI,"🇹🇫":hE,"🇹🇬":hO,"🇹🇯":hL,"🇹🇰":hC,"🇹🇱":hT,"🇹🇲":h$,"🇹🇳":h_,"🇹🇴":hR,"🇹🇷":hD,"🇹🇹":hz,"🇹🇻":hA,"":te,"🇹🇿":hq,"🇺🇦":hj,"🇺🇬":hX,"🇺🇲":hF,"🇺🇳":hY,"🇺🇾":hV,"🇺🇿":hZ,"🇻🇨":hQ,"🇻🇪":hH,"🇻🇬":hN,"🇻🇮":hB,"🇻🇳":hU,"🇻🇺":hJ,"🇼🇫":hK,"🇼🇸":h2,"🇽🇰":h1,"🇾🇪":h3,"🇾🇹":h0,"🇿🇦":h4,"🇿🇲":h8,"🇿🇼":h5};draw(t){var i,h,c,l;let o,a,s,n,d,r,g,u,b,y;this.clearCanvas(),this.drawPaper();let w=this.templateDrawers[t];w?w():(i=t,h={detailLimit:180,hachureGap:18,textureWeight:.38},g=fa((r=h6()).x,r.y,r.width,r.height),y=(l=b=function(t,e,i=64,h=40){let{data:f,bounds:c}=t,l=f.data,o=[],a=Math.max(1,c.maxX-c.minX),s=Math.max(1,c.maxY-c.minY);for(let t=0;t<h;t+=1){let d=null;for(let r=0;r<i;r+=1){var n;let g=r/i,u=t/h,b=(r+1)/i,y=(t+1)/h,w=function(t,e,i,h,f,c,l,o,a){let s=[[(c+o)/2,(l+a)/2],[c+(o-c)*.28,l+(a-l)*.35],[c+(o-c)*.72,l+(a-l)*.35],[c+(o-c)*.28,l+(a-l)*.72],[c+(o-c)*.72,l+(a-l)*.72]].reduce((c,[l,o])=>{let a=Math.round(i.minX+l*h),s=(Math.round(i.minY+o*f)*e+a)*4,n=t[s+3];return n<30||(c.red+=t[s],c.green+=t[s+1],c.blue+=t[s+2],c.alpha+=n,c.count+=1),c},{red:0,green:0,blue:0,alpha:0,count:0});if(!s.count)return null;let n=Math.round(s.red/s.count),d=Math.round(s.green/s.count),r=Math.round(s.blue/s.count),g=Math.max(n,d,r),u=Math.min(n,d,r);return{alpha:s.alpha/s.count,metrics:{red:n,green:d,blue:r,brightness:(n+d+r)/3,saturation:g-u}}}(l,f.width,c,a,s,g,u,b,y);if(!w||w.alpha<42){d&&(o.push(fg(d,t,i,h,e)),d=null);continue}let k=fr(w.metrics),x=k.brightness>232&&k.saturation<30,p=(n=k,x?"light":`${34*Math.round(n.red/34)}-${34*Math.round(n.green/34)}-${34*Math.round(n.blue/34)}`),W={column:r,metrics:k,isLightNeutral:x,bucket:p};d&&d.bucket===p?(d.endColumn=r,d.cells.push(W)):(d&&o.push(fg(d,t,i,h,e)),d={bucket:p,startColumn:r,endColumn:r,cells:[W]})}d&&o.push(fg(d,t,i,h,e))}return o}(u=(c=i,(o=document.createElement("canvas")).width=560*f,o.height=560*f,(a=o.getContext("2d",{willReadFrequently:!0})).scale(f,f),a.clearRect(0,0,560,560),a.textAlign="center",a.textBaseline="middle",a.font=`${Math.round(380.8)}px Apple Color Emoji, Segoe UI Emoji, Noto Color Emoji, sans-serif`,a.fillText(c,280,291.2),{data:s=a.getImageData(0,0,o.width,o.height),bounds:function(t){let{data:e,width:i,height:h}=t,f={minX:i,minY:h,maxX:0,maxY:0};for(let t=0;t<h;t+=1)for(let h=0;h<i;h+=1)e[(t*i+h)*4+3]<24||(f.minX=Math.min(f.minX,h),f.minY=Math.min(f.minY,t),f.maxX=Math.max(f.maxX,h),f.maxY=Math.max(f.maxY,t));return f.minX>f.maxX||f.minY>f.maxY?{minX:0,minY:0,maxX:i,maxY:h}:f}(s)}),r),n=new Map,l.forEach(t=>{if(t.isLightNeutral)return;let e=`${36*Math.round(t.metrics.red/36)}-${36*Math.round(t.metrics.green/36)}-${36*Math.round(t.metrics.blue/36)}`,i=n.get(e)||{count:0,red:0,green:0,blue:0};i.count+=1,i.red+=t.metrics.red,i.green+=t.metrics.green,i.blue+=t.metrics.blue,n.set(e,i)}),((d=[...n.values()].sort((t,e)=>e.count-t.count)[0])?`rgb(${Math.round(d.red/d.count)}, ${Math.round(d.green/d.count)}, ${Math.round(d.blue/d.count)})`:null)||"#d94444"),h7(g),h9(g,"#fbfdfa","#b9c4c0"),e.polygon(g,{stroke:fk(y,.34),strokeWidth:1.1,fill:y,fillStyle:"hachure",hachureAngle:-10,hachureGap:h.hachureGap,fillWeight:h.textureWeight,roughness:2.1,bowing:1.15}),b.forEach(t=>{e.polygon(t.outline,{stroke:t.isLightNeutral?"rgba(38, 49, 45, 0.08)":fk(t.color,.42),strokeWidth:t.isLightNeutral?.35:.75,fill:t.color,fillStyle:"solid",roughness:2.25,bowing:1.35}),!t.isLightNeutral&&t.shouldTexture&&e.polygon(t.outline,{stroke:"rgba(38, 49, 45, 0.08)",strokeWidth:.35,fill:t.color,fillStyle:"hachure",hachureAngle:-12,hachureGap:20,fillWeight:.3,roughness:1.8})}),function(t,i,h=180){let{data:f,bounds:c}=t,l=f.data,o=Math.max(1,c.maxX-c.minX),a=Math.max(1,c.maxY-c.minY),s=Math.max(5,Math.floor(f.width/88)),n=0,d=0;for(let t=c.minY+s;t<c.maxY-s;t+=s)for(let r=c.minX+s;r<c.maxX-s;r+=s){let g=(t*f.width+r)*4;if(l[g+3]<48||!function(t,e,i,h,f,c){let l=(f*e+h)*4,o=t[l+3];return[[-c,0],[c,0],[0,-c],[0,c],[-c,-c],[c,c]].some(([c,a])=>{let s=Math.min(e-1,Math.max(0,h+c)),n=(Math.min(i-1,Math.max(0,f+a))*e+s)*4,d=t[n+3];return Math.abs(o-d)>90||d<32||Math.abs(t[l]-t[n])+Math.abs(t[l+1]-t[n+1])+Math.abs(t[l+2]-t[n+2])>118})}(l,f.width,f.height,r,t,s))continue;let u=fr(function(t,e){let i=t[e],h=t[e+1],f=t[e+2],c=Math.max(i,h,f),l=Math.min(i,h,f);return{red:i,green:h,blue:f,brightness:(i+h+f)/3,saturation:c-l}}(l,g)),b=u.brightness>232&&u.saturation<30;if(d+=1,b&&d%3!=0)continue;let y=(r-c.minX)/o,w=(t-c.minY)/a,k=fb(y,w,i)+fp(1.4),x=fy(y,w,i)+fp(1.4),p=`rgba(${u.red}, ${u.green}, ${u.blue}, ${b?.48:.82})`;if(e.circle(k,x,fx(3.4,6.8),{stroke:b?"rgba(38, 49, 45, 0.18)":fk(p,.5),strokeWidth:b?.5:.8,fill:p,fillStyle:"solid",roughness:2.1,bowing:1.1}),b||n%4!=0||e.line(k+fp(5),x+fp(5),k+fp(14),x+fp(12),{stroke:"rgba(38, 49, 45, 0.24)",strokeWidth:fx(.45,.8),roughness:2.4,bowing:1.6}),(n+=1)>h)return}}(u,r,h.detailLimit),fs(r.x+14,r.y+22,r.width-36,r.height-50,fk(y,.28)),ft(r))}clearCanvas(){t.clearRect(0,0,K,K)}drawPaper(){t.fillStyle=c,t.fillRect(0,0,K,K),e.rectangle(46,46,K-92,K-92,{roughness:1.4,bowing:.8,stroke:"#d9e3db",strokeWidth:1.2,fill:c,fillStyle:"hachure",hachureGap:24,fillWeight:.28})}},globalThis.RoughEmoji=tt,new class{api;doc;win;constructor(t,e=document,i=window){this.api=t,this.doc=e,this.win=i}mount(){let t=this.queryElements();if(!t)return;let{canvas:e,form:i,input:f,downloadButton:c}=t,l=new URLSearchParams(this.win.location.search).get("flag")||this.win.prompt("请输入要绘制的国旗",h)||h;f.value=l,this.api.draw(e,l),i.addEventListener("submit",t=>{t.preventDefault(),this.api.draw(e,f.value)}),c.addEventListener("click",()=>{let t=this.doc.createElement("a"),i=this.api.resolveFlag(f.value);t.download=`rough-flag-${i}.png`,t.href=e.toDataURL("image/png"),t.click()})}queryElements(){let t=this.doc.querySelector("#rough-canvas"),e=this.doc.querySelector("#emoji-form"),i=this.doc.querySelector("#emoji-input"),h=this.doc.querySelector("#download-button");return t&&e&&i&&h?{canvas:t,form:e,input:i,downloadButton:h}:null}}(tt).mount()})();
1
+ (()=>{let t,e,i,h="u">typeof globalThis&&"devicePixelRatio"in globalThis&&"number"==typeof globalThis.devicePixelRatio?globalThis.devicePixelRatio:1,f="#fbfdfa",c="rgba(36, 49, 44, 0.08)";function l(t){let e=String(t||"").trim();return o(e)?e:"🇨🇳"}function o(t){let e=[...t].map(t=>t.codePointAt(0));return 2===e.length&&e.every(t=>void 0!==t&&t>=127462&&t<=127487)}function a(t,e,i){if(t&&t.length){let[h,f]=e,c=Math.PI/180*i,l=Math.cos(c),o=Math.sin(c);for(let e of t){let[t,i]=e;e[0]=(t-h)*l-(i-f)*o+h,e[1]=(t-h)*o+(i-f)*l+f}}}function s(t,e){var i;let h=e.hachureAngle+90,f=e.hachureGap;f<0&&(f=4*e.strokeWidth),f=Math.round(Math.max(f,.1));let c=1;return e.roughness>=1&&((null==(i=e.randomizer)?void 0:i.next())||Math.random())>.7&&(c=f),function(t,e,i,h=1){let f=Math.max(e,.1),c=t[0]&&t[0][0]&&"number"==typeof t[0][0]?[t]:t,l=[0,0];if(i)for(let t of c)a(t,l,i);let o=function(t,e,i){let h=[];for(let e of t){var f,c;let t=[...e];f=t[0],c=t[t.length-1],f[0]===c[0]&&f[1]===c[1]||t.push([t[0][0],t[0][1]]),t.length>2&&h.push(t)}let l=[];e=Math.max(e,.1);let o=[];for(let t of h)for(let e=0;e<t.length-1;e++){let i=t[e],h=t[e+1];if(i[1]!==h[1]){let t=Math.min(i[1],h[1]);o.push({ymin:t,ymax:Math.max(i[1],h[1]),x:t===i[1]?i[0]:h[0],islope:(h[0]-i[0])/(h[1]-i[1])})}}if(o.sort((t,e)=>t.ymin<e.ymin?-1:t.ymin>e.ymin?1:t.x<e.x?-1:t.x>e.x?1:t.ymax===e.ymax?0:(t.ymax-e.ymax)/Math.abs(t.ymax-e.ymax)),!o.length)return l;let a=[],s=o[0].ymin,n=0;for(;a.length||o.length;){if(o.length){let t=-1;for(let e=0;e<o.length&&!(o[e].ymin>s);e++)t=e;o.splice(0,t+1).forEach(t=>{a.push({s:s,edge:t})})}if((a=a.filter(t=>!(t.edge.ymax<=s))).sort((t,e)=>t.edge.x===e.edge.x?0:(t.edge.x-e.edge.x)/Math.abs(t.edge.x-e.edge.x)),(1!==i||n%e==0)&&a.length>1)for(let t=0;t<a.length;t+=2){let e=t+1;if(e>=a.length)break;let i=a[t].edge,h=a[e].edge;l.push([[Math.round(i.x),s],[Math.round(h.x),s]])}s+=i,a.forEach(t=>{t.edge.x=t.edge.x+i*t.edge.islope}),n++}return l}(c,f,h);if(i){let t;for(let t of c)a(t,l,-i);t=[],o.forEach(e=>t.push(...e)),a(t,l,-i)}return o}(t,f,h,c||1)}class n{constructor(t){this.helper=t}fillPolygons(t,e){return this._fillPolygons(t,e)}_fillPolygons(t,e){let i=s(t,e);return{type:"fillSketch",ops:this.renderLines(i,e)}}renderLines(t,e){let i=[];for(let h of t)i.push(...this.helper.doubleLineOps(h[0][0],h[0][1],h[1][0],h[1][1],e));return i}}function d(t){let e=t[0],i=t[1];return Math.sqrt(Math.pow(e[0]-i[0],2)+Math.pow(e[1]-i[1],2))}class r extends n{fillPolygons(t,e){let i=e.hachureGap;i<0&&(i=4*e.strokeWidth);let h=s(t,Object.assign({},e,{hachureGap:i=Math.max(i,.1)})),f=Math.PI/180*e.hachureAngle,c=[],l=.5*i*Math.cos(f),o=.5*i*Math.sin(f);for(let[t,e]of h)d([t,e])&&c.push([[t[0]-l,t[1]+o],[...e]],[[t[0]+l,t[1]-o],[...e]]);return{type:"fillSketch",ops:this.renderLines(c,e)}}}class g extends n{fillPolygons(t,e){let i=this._fillPolygons(t,e),h=Object.assign({},e,{hachureAngle:e.hachureAngle+90}),f=this._fillPolygons(t,h);return i.ops=i.ops.concat(f.ops),i}}class u{constructor(t){this.helper=t}fillPolygons(t,e){let i=s(t,e=Object.assign({},e,{hachureAngle:0}));return this.dotsOnLines(i,e)}dotsOnLines(t,e){let i=[],h=e.hachureGap;h<0&&(h=4*e.strokeWidth),h=Math.max(h,.1);let f=e.fillWeight;f<0&&(f=e.strokeWidth/2);let c=h/4;for(let l of t){let t=d(l),o=Math.ceil(t/h)-1,a=t-o*h,s=(l[0][0]+l[1][0])/2-h/4,n=Math.min(l[0][1],l[1][1]);for(let t=0;t<o;t++){let l=s-c+2*Math.random()*c,o=n+a+t*h-c+2*Math.random()*c,d=this.helper.ellipse(l,o,f,f,e);i.push(...d.ops)}}return{type:"fillSketch",ops:i}}}class b{constructor(t){this.helper=t}fillPolygons(t,e){let i=s(t,e);return{type:"fillSketch",ops:this.dashedLine(i,e)}}dashedLine(t,e){let i=e.dashOffset<0?e.hachureGap<0?4*e.strokeWidth:e.hachureGap:e.dashOffset,h=e.dashGap<0?e.hachureGap<0?4*e.strokeWidth:e.hachureGap:e.dashGap,f=[];return t.forEach(t=>{let c=d(t),l=Math.floor(c/(i+h)),o=(c+h-l*(i+h))/2,a=t[0],s=t[1];a[0]>s[0]&&(a=t[1],s=t[0]);let n=Math.atan((s[1]-a[1])/(s[0]-a[0]));for(let t=0;t<l;t++){let c=t*(i+h),l=c+i,s=[a[0]+c*Math.cos(n)+o*Math.cos(n),a[1]+c*Math.sin(n)+o*Math.sin(n)],d=[a[0]+l*Math.cos(n)+o*Math.cos(n),a[1]+l*Math.sin(n)+o*Math.sin(n)];f.push(...this.helper.doubleLineOps(s[0],s[1],d[0],d[1],e))}}),f}}class y{constructor(t){this.helper=t}fillPolygons(t,e){let i=e.hachureGap<0?4*e.strokeWidth:e.hachureGap,h=e.zigzagOffset<0?i:e.zigzagOffset,f=s(t,e=Object.assign({},e,{hachureGap:i+h}));return{type:"fillSketch",ops:this.zigzagLines(f,h,e)}}zigzagLines(t,e,i){let h=[];return t.forEach(t=>{let f=Math.round(d(t)/(2*e)),c=t[0],l=t[1];c[0]>l[0]&&(c=t[1],l=t[0]);let o=Math.atan((l[1]-c[1])/(l[0]-c[0]));for(let t=0;t<f;t++){let f=2*t*e,l=2*(t+1)*e,a=Math.sqrt(2*Math.pow(e,2)),s=[c[0]+f*Math.cos(o),c[1]+f*Math.sin(o)],n=[c[0]+l*Math.cos(o),c[1]+l*Math.sin(o)],d=[s[0]+a*Math.cos(o+Math.PI/4),s[1]+a*Math.sin(o+Math.PI/4)];h.push(...this.helper.doubleLineOps(s[0],s[1],d[0],d[1],i),...this.helper.doubleLineOps(d[0],d[1],n[0],n[1],i))}}),h}}let w={};class k{constructor(t){this.seed=t}next(){return this.seed?(0x80000000-1&(this.seed=Math.imul(48271,this.seed)))/0x80000000:Math.random()}}let x={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0};function p(t){let e=[],i=function(t){let e=[];for(;""!==t;)if(t.match(/^([ \t\r\n,]+)/))t=t.substr(RegExp.$1.length);else if(t.match(/^([aAcChHlLmMqQsStTvVzZ])/))e[e.length]={type:0,text:RegExp.$1},t=t.substr(RegExp.$1.length);else{if(!t.match(/^(([-+]?[0-9]+(\.[0-9]*)?|[-+]?\.[0-9]+)([eE][-+]?[0-9]+)?)/))return[];e[e.length]={type:1,text:`${parseFloat(RegExp.$1)}`},t=t.substr(RegExp.$1.length)}return e[e.length]={type:2,text:""},e}(t),h="BOD",f=0,c=i[0];for(;2!==c.type;){let l=0,o=[];if("BOD"===h){if("M"!==c.text&&"m"!==c.text)return p("M0,0"+t);f++,l=x[c.text],h=c.text}else 1===c.type?l=x[h]:(f++,l=x[c.text],h=c.text);if(!(f+l<i.length))throw Error("Path data ended short");for(let t=f;t<f+l;t++){let e=i[t];if(1!==e.type)throw Error("Param not a number: "+h+","+e.text);o[o.length]=+e.text}if("number"!=typeof x[h])throw Error("Bad segment: "+h);{let t={key:h,data:o};e.push(t),f+=l,c=i[f],"M"===h&&(h="L"),"m"===h&&(h="l")}}return e}function W(t){let e=0,i=0,h=0,f=0,c=[];for(let{key:l,data:o}of t)switch(l){case"M":c.push({key:"M",data:[...o]}),[e,i]=o,[h,f]=o;break;case"m":e+=o[0],i+=o[1],c.push({key:"M",data:[e,i]}),h=e,f=i;break;case"L":c.push({key:"L",data:[...o]}),[e,i]=o;break;case"l":e+=o[0],i+=o[1],c.push({key:"L",data:[e,i]});break;case"C":c.push({key:"C",data:[...o]}),e=o[4],i=o[5];break;case"c":{let t=o.map((t,h)=>h%2?t+i:t+e);c.push({key:"C",data:t}),e=t[4],i=t[5];break}case"Q":c.push({key:"Q",data:[...o]}),e=o[2],i=o[3];break;case"q":{let t=o.map((t,h)=>h%2?t+i:t+e);c.push({key:"Q",data:t}),e=t[2],i=t[3];break}case"A":c.push({key:"A",data:[...o]}),e=o[5],i=o[6];break;case"a":e+=o[5],i+=o[6],c.push({key:"A",data:[o[0],o[1],o[2],o[3],o[4],e,i]});break;case"H":c.push({key:"H",data:[...o]}),e=o[0];break;case"h":e+=o[0],c.push({key:"H",data:[e]});break;case"V":c.push({key:"V",data:[...o]}),i=o[0];break;case"v":i+=o[0],c.push({key:"V",data:[i]});break;case"S":c.push({key:"S",data:[...o]}),e=o[2],i=o[3];break;case"s":{let t=o.map((t,h)=>h%2?t+i:t+e);c.push({key:"S",data:t}),e=t[2],i=t[3];break}case"T":c.push({key:"T",data:[...o]}),e=o[0],i=o[1];break;case"t":e+=o[0],i+=o[1],c.push({key:"T",data:[e,i]});break;case"Z":case"z":c.push({key:"Z",data:[]}),e=h,i=f}return c}function M(t){let e=[],i="",h=0,f=0,c=0,l=0,o=0,a=0;for(let{key:s,data:n}of t){switch(s){case"M":e.push({key:"M",data:[...n]}),[h,f]=n,[c,l]=n;break;case"C":e.push({key:"C",data:[...n]}),h=n[4],f=n[5],o=n[2],a=n[3];break;case"L":e.push({key:"L",data:[...n]}),[h,f]=n;break;case"H":h=n[0],e.push({key:"L",data:[h,f]});break;case"V":f=n[0],e.push({key:"L",data:[h,f]});break;case"S":{let t=0,c=0;"C"===i||"S"===i?(t=h+(h-o),c=f+(f-a)):(t=h,c=f),e.push({key:"C",data:[t,c,...n]}),o=n[0],a=n[1],h=n[2],f=n[3];break}case"T":{let[t,c]=n,l=0,s=0;"Q"===i||"T"===i?(l=h+(h-o),s=f+(f-a)):(l=h,s=f);let d=h+2*(l-h)/3,r=f+2*(s-f)/3,g=t+2*(l-t)/3,u=c+2*(s-c)/3;e.push({key:"C",data:[d,r,g,u,t,c]}),o=l,a=s,h=t,f=c;break}case"Q":{let[t,i,c,l]=n,s=h+2*(t-h)/3,d=f+2*(i-f)/3,r=c+2*(t-c)/3,g=l+2*(i-l)/3;e.push({key:"C",data:[s,d,r,g,c,l]}),o=t,a=i,h=c,f=l;break}case"A":{let t=Math.abs(n[0]),i=Math.abs(n[1]),c=n[2],l=n[3],o=n[4],a=n[5],s=n[6];0===t||0===i?(e.push({key:"C",data:[h,f,a,s,a,s]}),h=a,f=s):(h!==a||f!==s)&&((function t(e,i,h,f,c,l,o,a,s,n){let d=Math.PI*o/180,r=[],g=0,u=0,b=0,y=0;if(n)[g,u,b,y]=n;else{[e,i]=S(e,i,-d),[h,f]=S(h,f,-d);let t=(e-h)/2,o=(i-f)/2,n=t*t/(c*c)+o*o/(l*l);n>1&&(c*=n=Math.sqrt(n),l*=n);let r=c*c,w=l*l,k=(a===s?-1:1)*Math.sqrt(Math.abs((r*w-r*o*o-w*t*t)/(r*o*o+w*t*t)));b=k*c*o/l+(e+h)/2,y=-(k*l)*t/c+(i+f)/2,g=Math.asin(parseFloat(((i-y)/l).toFixed(9))),u=Math.asin(parseFloat(((f-y)/l).toFixed(9))),e<b&&(g=Math.PI-g),h<b&&(u=Math.PI-u),g<0&&(g=2*Math.PI+g),u<0&&(u=2*Math.PI+u),s&&g>u&&(g-=2*Math.PI),!s&&u>g&&(u-=2*Math.PI)}let w=u-g;if(Math.abs(w)>120*Math.PI/180){let e=u,i=h,a=f;r=t(h=b+c*Math.cos(u=s&&u>g?g+120*Math.PI/180*1:g+-(120*Math.PI/180*1)),f=y+l*Math.sin(u),i,a,c,l,o,0,s,[u,e,b,y])}w=u-g;let k=Math.cos(g),x=Math.cos(u),p=Math.tan(w/4),W=4/3*c*p,M=4/3*l*p,m=[e,i],P=[e+W*Math.sin(g),i-M*k],v=[h+W*Math.sin(u),f-M*x],G=[h,f];if(P[0]=2*m[0]-P[0],P[1]=2*m[1]-P[1],n)return[P,v,G].concat(r);{r=[P,v,G].concat(r);let t=[];for(let e=0;e<r.length;e+=3){let i=S(r[e][0],r[e][1],d),h=S(r[e+1][0],r[e+1][1],d),f=S(r[e+2][0],r[e+2][1],d);t.push([i[0],i[1],h[0],h[1],f[0],f[1]])}return t}})(h,f,a,s,t,i,c,l,o).forEach(function(t){e.push({key:"C",data:t})}),h=a,f=s);break}case"Z":e.push({key:"Z",data:[]}),h=c,f=l}i=s}return e}function S(t,e,i){return[t*Math.cos(i)-e*Math.sin(i),t*Math.sin(i)+e*Math.cos(i)]}let m={randOffset:function(t,e){return z(t,e)},randOffsetWithRange:function(t,e,i){return R(t,e,i)},ellipse:function(t,e,i,h,f){let c=I(i,h,f);return O(t,e,f,c).opset},doubleLineOps:function(t,e,i,h,f){return D(t,e,i,h,f,!0)}};function P(t,e,i,h,f){return{type:"path",ops:D(t,e,i,h,f)}}function v(t,e,i){let h=(t||[]).length;if(h>2){let f=[];for(let e=0;e<h-1;e++)f.push(...D(t[e][0],t[e][1],t[e+1][0],t[e+1][1],i));return e&&f.push(...D(t[h-1][0],t[h-1][1],t[0][0],t[0][1],i)),{type:"path",ops:f}}return 2===h?P(t[0][0],t[0][1],t[1][0],t[1][1],i):{type:"path",ops:[]}}function G(t,e){if(t.length){let i="number"==typeof t[0][0]?[t]:t,h=X(i[0],+(1+.2*e.roughness),e),f=e.disableMultiStroke?[]:X(i[0],1.5*(1+.22*e.roughness),$(e));for(let t=1;t<i.length;t++){let c=i[t];if(c.length){let t=X(c,+(1+.2*e.roughness),e),i=e.disableMultiStroke?[]:X(c,1.5*(1+.22*e.roughness),$(e));for(let e of t)"move"!==e.op&&h.push(e);for(let t of i)"move"!==t.op&&f.push(t)}}return{type:"path",ops:h.concat(f)}}return{type:"path",ops:[]}}function I(t,e,i){let h=Math.sqrt(2*Math.PI*Math.sqrt((Math.pow(t/2,2)+Math.pow(e/2,2))/2)),f=2*Math.PI/Math.ceil(Math.max(i.curveStepCount,i.curveStepCount/Math.sqrt(200)*h)),c=Math.abs(t/2),l=Math.abs(e/2),o=1-i.curveFitting;return c+=z(c*o,i),l+=z(l*o,i),{increment:f,rx:c,ry:l}}function O(t,e,i,h){let[f,c]=j(h.increment,t,e,h.rx,h.ry,1,h.increment*R(.1,R(.4,1,i),i),i),l=Y(f,null,i);if(!i.disableMultiStroke&&0!==i.roughness){let[f]=j(h.increment,t,e,h.rx,h.ry,1.5,0,i),c=Y(f,null,i);l=l.concat(c)}return{estimatedPoints:c,opset:{type:"path",ops:l}}}function E(t,e,i,h,f,c,l,o,a){let s=Math.abs(i/2),n=Math.abs(h/2);s+=z(.01*s,a),n+=z(.01*n,a);let d=f,r=c;for(;d<0;)d+=2*Math.PI,r+=2*Math.PI;r-d>2*Math.PI&&(d=0,r=2*Math.PI);let g=Math.min(2*Math.PI/a.curveStepCount/2,(r-d)/2),u=q(g,t,e,s,n,d,r,1,a);if(!a.disableMultiStroke){let i=q(g,t,e,s,n,d,r,1.5,a);u.push(...i)}return l&&(o?u.push(...D(t,e,t+s*Math.cos(d),e+n*Math.sin(d),a),...D(t,e,t+s*Math.cos(r),e+n*Math.sin(r),a)):u.push({op:"lineTo",data:[t,e]},{op:"lineTo",data:[t+s*Math.cos(d),e+n*Math.sin(d)]})),{type:"path",ops:u}}function L(t,e){let i=M(W(p(t))),h=[],f=[0,0],c=[0,0];for(let{key:t,data:l}of i)switch(t){case"M":c=[l[0],l[1]],f=[l[0],l[1]];break;case"L":h.push(...D(c[0],c[1],l[0],l[1],e)),c=[l[0],l[1]];break;case"C":{let[t,i,f,o,a,s]=l;h.push(...function(t,e,i,h,f,c,l,o){let a=[],s=[o.maxRandomnessOffset||1,(o.maxRandomnessOffset||1)+.3],n=[0,0],d=o.disableMultiStroke?1:2,r=o.preserveVertices;for(let g=0;g<d;g++)0===g?a.push({op:"move",data:[l[0],l[1]]}):a.push({op:"move",data:[l[0]+(r?0:z(s[0],o)),l[1]+(r?0:z(s[0],o))]}),n=r?[f,c]:[f+z(s[g],o),c+z(s[g],o)],a.push({op:"bcurveTo",data:[t+z(s[g],o),e+z(s[g],o),i+z(s[g],o),h+z(s[g],o),n[0],n[1]]});return a}(t,i,f,o,a,s,c,e)),c=[a,s];break}case"Z":h.push(...D(c[0],c[1],f[0],f[1],e)),c=[f[0],f[1]]}return{type:"path",ops:h}}function C(t,e){let i=[];for(let h of t)if(h.length){let t=e.maxRandomnessOffset||0,f=h.length;if(f>2){i.push({op:"move",data:[h[0][0]+z(t,e),h[0][1]+z(t,e)]});for(let c=1;c<f;c++)i.push({op:"lineTo",data:[h[c][0]+z(t,e),h[c][1]+z(t,e)]})}}return{type:"fillPath",ops:i}}function T(t,e){return(function(t,e){let i=t.fillStyle||"hachure";if(!w[i])switch(i){case"zigzag":w[i]||(w[i]=new r(e));break;case"cross-hatch":w[i]||(w[i]=new g(e));break;case"dots":w[i]||(w[i]=new u(e));break;case"dashed":w[i]||(w[i]=new b(e));break;case"zigzag-line":w[i]||(w[i]=new y(e));break;default:w[i="hachure"]||(w[i]=new n(e))}return w[i]})(e,m).fillPolygons(t,e)}function $(t){let e=Object.assign({},t);return e.randomizer=void 0,t.seed&&(e.seed=t.seed+1),e}function _(t){return t.randomizer||(t.randomizer=new k(t.seed||0)),t.randomizer.next()}function R(t,e,i,h=1){return i.roughness*h*(_(i)*(e-t)+t)}function z(t,e,i=1){return R(-t,t,e,i)}function D(t,e,i,h,f,c=!1){let l=c?f.disableMultiStrokeFill:f.disableMultiStroke,o=A(t,e,i,h,f,!0,!1);if(l)return o;let a=A(t,e,i,h,f,!0,!0);return o.concat(a)}function A(t,e,i,h,f,c,l){let o=Math.pow(t-i,2)+Math.pow(e-h,2),a=Math.sqrt(o),s=1;s=a<200?1:a>500?.4:-.0016668*a+1.233334;let n=f.maxRandomnessOffset||0;n*n*100>o&&(n=a/10);let d=n/2,r=.2+.2*_(f),g=f.bowing*f.maxRandomnessOffset*(h-e)/200,u=f.bowing*f.maxRandomnessOffset*(t-i)/200;g=z(g,f,s),u=z(u,f,s);let b=[],y=f.preserveVertices;return c&&(l?b.push({op:"move",data:[t+(y?0:z(d,f,s)),e+(y?0:z(d,f,s))]}):b.push({op:"move",data:[t+(y?0:z(n,f,s)),e+(y?0:z(n,f,s))]})),l?b.push({op:"bcurveTo",data:[g+t+(i-t)*r+z(d,f,s),u+e+(h-e)*r+z(d,f,s),g+t+2*(i-t)*r+z(d,f,s),u+e+2*(h-e)*r+z(d,f,s),i+(y?0:z(d,f,s)),h+(y?0:z(d,f,s))]}):b.push({op:"bcurveTo",data:[g+t+(i-t)*r+z(n,f,s),u+e+(h-e)*r+z(n,f,s),g+t+2*(i-t)*r+z(n,f,s),u+e+2*(h-e)*r+z(n,f,s),i+(y?0:z(n,f,s)),h+(y?0:z(n,f,s))]}),b}function X(t,e,i){if(!t.length)return[];let h=[];h.push([t[0][0]+z(e,i),t[0][1]+z(e,i)]),h.push([t[0][0]+z(e,i),t[0][1]+z(e,i)]);for(let f=1;f<t.length;f++)h.push([t[f][0]+z(e,i),t[f][1]+z(e,i)]),f===t.length-1&&h.push([t[f][0]+z(e,i),t[f][1]+z(e,i)]);return Y(h,null,i)}function Y(t,e,i){let h=t.length,f=[];if(h>3){let c=[],l=1-i.curveTightness;f.push({op:"move",data:[t[1][0],t[1][1]]});for(let e=1;e+2<h;e++){let i=t[e];c[0]=[i[0],i[1]],c[1]=[i[0]+(l*t[e+1][0]-l*t[e-1][0])/6,i[1]+(l*t[e+1][1]-l*t[e-1][1])/6],c[2]=[t[e+1][0]+(l*t[e][0]-l*t[e+2][0])/6,t[e+1][1]+(l*t[e][1]-l*t[e+2][1])/6],c[3]=[t[e+1][0],t[e+1][1]],f.push({op:"bcurveTo",data:[c[1][0],c[1][1],c[2][0],c[2][1],c[3][0],c[3][1]]})}if(e&&2===e.length){let t=i.maxRandomnessOffset;f.push({op:"lineTo",data:[e[0]+z(t,i),e[1]+z(t,i)]})}}else 3===h?(f.push({op:"move",data:[t[1][0],t[1][1]]}),f.push({op:"bcurveTo",data:[t[1][0],t[1][1],t[2][0],t[2][1],t[2][0],t[2][1]]})):2===h&&f.push(...A(t[0][0],t[0][1],t[1][0],t[1][1],i,!0,!0));return f}function j(t,e,i,h,f,c,l,o){let a=[],s=[];if(0===o.roughness){t/=4,s.push([e+h*Math.cos(-t),i+f*Math.sin(-t)]);for(let c=0;c<=2*Math.PI;c+=t){let t=[e+h*Math.cos(c),i+f*Math.sin(c)];a.push(t),s.push(t)}s.push([e+ +h,i+0*f]),s.push([e+h*Math.cos(t),i+f*Math.sin(t)])}else{let n=z(.5,o)-Math.PI/2;s.push([z(c,o)+e+.9*h*Math.cos(n-t),z(c,o)+i+.9*f*Math.sin(n-t)]);let d=2*Math.PI+n-.01;for(let l=n;l<d;l+=t){let t=[z(c,o)+e+h*Math.cos(l),z(c,o)+i+f*Math.sin(l)];a.push(t),s.push(t)}s.push([z(c,o)+e+h*Math.cos(n+2*Math.PI+.5*l),z(c,o)+i+f*Math.sin(n+2*Math.PI+.5*l)]),s.push([z(c,o)+e+.98*h*Math.cos(n+l),z(c,o)+i+.98*f*Math.sin(n+l)]),s.push([z(c,o)+e+.9*h*Math.cos(n+.5*l),z(c,o)+i+.9*f*Math.sin(n+.5*l)])}return[s,a]}function q(t,e,i,h,f,c,l,o,a){let s=c+z(.1,a),n=[];n.push([z(o,a)+e+.9*h*Math.cos(s-t),z(o,a)+i+.9*f*Math.sin(s-t)]);for(let c=s;c<=l;c+=t)n.push([z(o,a)+e+h*Math.cos(c),z(o,a)+i+f*Math.sin(c)]);return n.push([e+h*Math.cos(l),i+f*Math.sin(l)]),n.push([e+h*Math.cos(l),i+f*Math.sin(l)]),Y(n,null,a)}function F(t,e=0){let i=t.length;if(i<3)throw Error("A curve must have at least three points.");let h=[];if(3===i)h.push([...t[0]],[...t[1]],[...t[2]],[...t[2]]);else{let i=[];i.push(t[0],t[0]);for(let e=1;e<t.length;e++)i.push(t[e]),e===t.length-1&&i.push(t[e]);let f=[],c=1-e;h.push([...i[0]]);for(let t=1;t+2<i.length;t++){let e=i[t];f[0]=[e[0],e[1]],f[1]=[e[0]+(c*i[t+1][0]-c*i[t-1][0])/6,e[1]+(c*i[t+1][1]-c*i[t-1][1])/6],f[2]=[i[t+1][0]+(c*i[t][0]-c*i[t+2][0])/6,i[t+1][1]+(c*i[t][1]-c*i[t+2][1])/6],f[3]=[i[t+1][0],i[t+1][1]],h.push(f[1],f[2],f[3])}}return h}function V(t,e){return Math.pow(t[0]-e[0],2)+Math.pow(t[1]-e[1],2)}function Z(t,e,i){return[t[0]+(e[0]-t[0])*i,t[1]+(e[1]-t[1])*i]}function Q(t,e,i,h,f){let c=f||[],l=t[e],o=t[i-1],a=0,s=1;for(let h=e+1;h<i-1;++h){let e=function(t,e,i){let h=V(e,i);if(0===h)return V(t,e);let f=((t[0]-e[0])*(i[0]-e[0])+(t[1]-e[1])*(i[1]-e[1]))/h;return V(t,Z(e,i,f=Math.max(0,Math.min(1,f))))}(t[h],l,o);e>a&&(a=e,s=h)}return Math.sqrt(a)>h?(Q(t,e,s+1,h,c),Q(t,s,i,h,c)):(c.length||c.push(l),c.push(o)),c}function H(t,e=.15,i){let h=[],f=(t.length-1)/3;for(let i=0;i<f;i++)!function t(e,i,h,f){let c,l,o,a,s,n,d,r,g=f||[];if(c=e[i+0],l=e[i+1],o=e[i+2],a=e[i+3],s=3*l[0]-2*c[0]-a[0],s*=s,n=3*l[1]-2*c[1]-a[1],n*=n,d=3*o[0]-2*a[0]-c[0],d*=d,r=3*o[1]-2*a[1]-c[1],r*=r,s<d&&(s=d),n<r&&(n=r),s+n<h){let t=e[i+0];g.length?Math.sqrt(V(g[g.length-1],t))>1&&g.push(t):g.push(t),g.push(e[i+3])}else{let f=e[i+0],c=e[i+1],l=e[i+2],o=e[i+3],a=Z(f,c,.5),s=Z(c,l,.5),n=Z(l,o,.5),d=Z(a,s,.5),r=Z(s,n,.5),u=Z(d,r,.5);t([f,a,d,u],0,h,g),t([u,r,n,o],0,h,g)}return g}(t,3*i,e,h);return i&&i>0?Q(h,0,h.length,i):h}let N="none";class B{constructor(t){this.defaultOptions={maxRandomnessOffset:2,roughness:1,bowing:1,stroke:"#000",strokeWidth:1,curveTightness:0,curveFitting:.95,curveStepCount:9,fillStyle:"hachure",fillWeight:-1,hachureAngle:-41,hachureGap:-1,dashOffset:-1,dashGap:-1,zigzagOffset:-1,seed:0,disableMultiStroke:!1,disableMultiStrokeFill:!1,preserveVertices:!1,fillShapeRoughnessGain:.8},this.config=t||{},this.config.options&&(this.defaultOptions=this._o(this.config.options))}static newSeed(){return Math.floor(0x80000000*Math.random())}_o(t){return t?Object.assign({},this.defaultOptions,t):this.defaultOptions}_d(t,e,i){return{shape:t,sets:e||[],options:i||this.defaultOptions}}line(t,e,i,h,f){let c=this._o(f);return this._d("line",[P(t,e,i,h,c)],c)}rectangle(t,e,i,h,f){var c,l,o,a;let s=this._o(f),n=[],d=v([[c=t,l=e],[c+(o=i),l],[c+o,l+(a=h)],[c,l+a]],!0,s);if(s.fill){let f=[[t,e],[t+i,e],[t+i,e+h],[t,e+h]];"solid"===s.fillStyle?n.push(C([f],s)):n.push(T([f],s))}return s.stroke!==N&&n.push(d),this._d("rectangle",n,s)}ellipse(t,e,i,h,f){let c=this._o(f),l=[],o=I(i,h,c),a=O(t,e,c,o);if(c.fill)if("solid"===c.fillStyle){let i=O(t,e,c,o).opset;i.type="fillPath",l.push(i)}else l.push(T([a.estimatedPoints],c));return c.stroke!==N&&l.push(a.opset),this._d("ellipse",l,c)}circle(t,e,i,h){let f=this.ellipse(t,e,i,i,h);return f.shape="circle",f}linearPath(t,e){let i=this._o(e);return this._d("linearPath",[v(t,!1,i)],i)}arc(t,e,i,h,f,c,l=!1,o){let a=this._o(o),s=[],n=E(t,e,i,h,f,c,l,!0,a);if(l&&a.fill)if("solid"===a.fillStyle){let l=Object.assign({},a);l.disableMultiStroke=!0;let o=E(t,e,i,h,f,c,!0,!1,l);o.type="fillPath",s.push(o)}else s.push(function(t,e,i,h,f,c,l){let o=Math.abs(i/2),a=Math.abs(h/2);o+=z(.01*o,l),a+=z(.01*a,l);let s=f,n=c;for(;s<0;)s+=2*Math.PI,n+=2*Math.PI;n-s>2*Math.PI&&(s=0,n=2*Math.PI);let d=(n-s)/l.curveStepCount,r=[];for(let i=s;i<=n;i+=d)r.push([t+o*Math.cos(i),e+a*Math.sin(i)]);return r.push([t+o*Math.cos(n),e+a*Math.sin(n)]),r.push([t,e]),T([r],l)}(t,e,i,h,f,c,a));return a.stroke!==N&&s.push(n),this._d("arc",s,a)}curve(t,e){let i=this._o(e),h=[],f=G(t,i);if(i.fill&&i.fill!==N)if("solid"===i.fillStyle){let e=G(t,Object.assign(Object.assign({},i),{disableMultiStroke:!0,roughness:i.roughness?i.roughness+i.fillShapeRoughnessGain:0}));h.push({type:"fillPath",ops:this._mergedShape(e.ops)})}else{let e=[];if(t.length)for(let h of"number"==typeof t[0][0]?[t]:t)h.length<3?e.push(...h):3===h.length?e.push(...H(F([h[0],h[0],h[1],h[2]]),10,(1+i.roughness)/2)):e.push(...H(F(h),10,(1+i.roughness)/2));e.length&&h.push(T([e],i))}return i.stroke!==N&&h.push(f),this._d("curve",h,i)}polygon(t,e){let i=this._o(e),h=[],f=v(t,!0,i);return i.fill&&("solid"===i.fillStyle?h.push(C([t],i)):h.push(T([t],i))),i.stroke!==N&&h.push(f),this._d("polygon",h,i)}path(t,e){let i=this._o(e),h=[];if(!t)return this._d("path",h,i);t=(t||"").replace(/\n/g," ").replace(/(-\s)/g,"-").replace("/(ss)/g"," ");let f=i.fill&&"transparent"!==i.fill&&i.fill!==N,c=i.stroke!==N,l=!!(i.simplification&&i.simplification<1),o=function(t,e){let i=M(W(p(t))),h=[],f=[],c=[0,0],l=[],o=()=>{l.length>=4&&f.push(...H(l,1)),l=[]},a=()=>{o(),f.length&&(h.push(f),f=[])};for(let{key:t,data:e}of i)switch(t){case"M":a(),c=[e[0],e[1]],f.push(c);break;case"L":o(),f.push([e[0],e[1]]);break;case"C":if(!l.length){let t=f.length?f[f.length-1]:c;l.push([t[0],t[1]])}l.push([e[0],e[1]]),l.push([e[2],e[3]]),l.push([e[4],e[5]]);break;case"Z":o(),f.push([c[0],c[1]])}if(a(),!e)return h;let s=[];for(let t of h){let i=Q(t,0,t.length,e);i.length&&s.push(i)}return s}(t,l?4-4*(i.simplification||1):(1+i.roughness)/2),a=L(t,i);if(f)if("solid"===i.fillStyle)if(1===o.length){let e=L(t,Object.assign(Object.assign({},i),{disableMultiStroke:!0,roughness:i.roughness?i.roughness+i.fillShapeRoughnessGain:0}));h.push({type:"fillPath",ops:this._mergedShape(e.ops)})}else h.push(C(o,i));else h.push(T(o,i));return c&&(l?o.forEach(t=>{h.push(v(t,!1,i))}):h.push(a)),this._d("path",h,i)}opsToPath(t,e){let i="";for(let h of t.ops){let t="number"==typeof e&&e>=0?h.data.map(t=>+t.toFixed(e)):h.data;switch(h.op){case"move":i+=`M${t[0]} ${t[1]} `;break;case"bcurveTo":i+=`C${t[0]} ${t[1]}, ${t[2]} ${t[3]}, ${t[4]} ${t[5]} `;break;case"lineTo":i+=`L${t[0]} ${t[1]} `}}return i.trim()}toPaths(t){let e=t.sets||[],i=t.options||this.defaultOptions,h=[];for(let t of e){let e=null;switch(t.type){case"path":e={d:this.opsToPath(t),stroke:i.stroke,strokeWidth:i.strokeWidth,fill:N};break;case"fillPath":e={d:this.opsToPath(t),stroke:N,strokeWidth:0,fill:i.fill||N};break;case"fillSketch":e=this.fillSketch(t,i)}e&&h.push(e)}return h}fillSketch(t,e){let i=e.fillWeight;return i<0&&(i=e.strokeWidth/2),{d:this.opsToPath(t),stroke:e.fill||N,strokeWidth:i,fill:N}}_mergedShape(t){return t.filter((t,e)=>0===e||"move"!==t.op)}}class U{constructor(t,e){this.canvas=t,this.ctx=this.canvas.getContext("2d"),this.gen=new B(e)}draw(t){let e=t.sets||[],i=t.options||this.getDefaultOptions(),h=this.ctx,f=t.options.fixedDecimalPlaceDigits;for(let c of e)switch(c.type){case"path":h.save(),h.strokeStyle="none"===i.stroke?"transparent":i.stroke,h.lineWidth=i.strokeWidth,i.strokeLineDash&&h.setLineDash(i.strokeLineDash),i.strokeLineDashOffset&&(h.lineDashOffset=i.strokeLineDashOffset),this._drawToContext(h,c,f),h.restore();break;case"fillPath":{h.save(),h.fillStyle=i.fill||"";let e="curve"===t.shape||"polygon"===t.shape||"path"===t.shape?"evenodd":"nonzero";this._drawToContext(h,c,f,e),h.restore();break}case"fillSketch":this.fillSketch(h,c,i)}}fillSketch(t,e,i){let h=i.fillWeight;h<0&&(h=i.strokeWidth/2),t.save(),i.fillLineDash&&t.setLineDash(i.fillLineDash),i.fillLineDashOffset&&(t.lineDashOffset=i.fillLineDashOffset),t.strokeStyle=i.fill||"",t.lineWidth=h,this._drawToContext(t,e,i.fixedDecimalPlaceDigits),t.restore()}_drawToContext(t,e,i,h="nonzero"){for(let h of(t.beginPath(),e.ops)){let e="number"==typeof i&&i>=0?h.data.map(t=>+t.toFixed(i)):h.data;switch(h.op){case"move":t.moveTo(e[0],e[1]);break;case"bcurveTo":t.bezierCurveTo(e[0],e[1],e[2],e[3],e[4],e[5]);break;case"lineTo":t.lineTo(e[0],e[1])}}"fillPath"===e.type?t.fill(h):t.stroke()}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}line(t,e,i,h,f){let c=this.gen.line(t,e,i,h,f);return this.draw(c),c}rectangle(t,e,i,h,f){let c=this.gen.rectangle(t,e,i,h,f);return this.draw(c),c}ellipse(t,e,i,h,f){let c=this.gen.ellipse(t,e,i,h,f);return this.draw(c),c}circle(t,e,i,h){let f=this.gen.circle(t,e,i,h);return this.draw(f),f}linearPath(t,e){let i=this.gen.linearPath(t,e);return this.draw(i),i}polygon(t,e){let i=this.gen.polygon(t,e);return this.draw(i),i}arc(t,e,i,h,f,c,l=!1,o){let a=this.gen.arc(t,e,i,h,f,c,l,o);return this.draw(a),a}curve(t,e){let i=this.gen.curve(t,e);return this.draw(i),i}path(t,e){let i=this.gen.path(t,e);return this.draw(i),i}}let J=0;function K(){let t=fl(118,174,486,342);e.polygon(t,{stroke:"#8c1f23",strokeWidth:3.2,fill:"#de2f36",fillStyle:"solid",roughness:2.4,bowing:1.4}),e.polygon(t,{stroke:"#b7252c",strokeWidth:1.2,fill:"#d92831",fillStyle:"hachure",hachureAngle:-8,hachureGap:14,fillWeight:1.1,roughness:2.1,bowing:1.1}),fo(132,196,458,292,"#981d25"),fa(210,262,54,-18),fa(294,214,20,17),fa(330,266,20,38),fa(330,324,20,8),fa(290,374,20,24),e.polygon(fl(118,174,486,342),{stroke:"#28332e",strokeWidth:2.1,fill:"transparent",roughness:2.8,bowing:1.6})}function tt(){let t=fl(128,172,464,344);e.polygon(t,{stroke:"#d6ded7",strokeWidth:2.4,fill:"#fbfdfa",fillStyle:"hachure",hachureAngle:-10,hachureGap:17,fillWeight:.45,roughness:2.1,bowing:1.2}),e.circle(360,344,166,{stroke:"#9f2936",strokeWidth:2.4,fill:"#cf3346",fillStyle:"solid",roughness:2.4,bowing:1.3}),e.circle(360,344,155,{stroke:"rgba(159, 41, 54, 0.48)",strokeWidth:1.1,fill:"#cf3346",fillStyle:"hachure",hachureAngle:-12,hachureGap:13,fillWeight:.9,roughness:2.1}),fo(150,198,420,280,"#cbd8ce"),e.polygon(t,{stroke:"#28332e",strokeWidth:1.6,fill:"transparent",roughness:2.5,bowing:1.5})}function te(){let t={x:118,y:174,width:486,height:342},i=fl(t.x,t.y,t.width,t.height);e.polygon(fb(i,8,10),{stroke:"transparent",fill:c,fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon(i,{stroke:"#b9c4c0",strokeWidth:2.4,fill:"#fbfdfa",fillStyle:"solid",roughness:2.4,bowing:1.4});for(let e=0;e<13;e+=1)e%2==0&&fh(t,0,e/13,1,(e+1)/13,"#c83c4a","#8f2633");fh(t,0,0,.43,7/13,"#314d7c","#20375e"),function(t){for(let e=0;e<9;e+=1){let i=e%2==0?6:5,h=.5*(e%2!=0);for(let f=0;f<i;f+=1){let i=.055+(f+h)/5.5*.34,c=.055+e/8*.435;fa(fg(i,c,t),fu(i,c,t),6.4,-18+2*e)}}}(t),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8d2d37"),e.polygon(fl(t.x,t.y,t.width,t.height),{stroke:"#28332e",strokeWidth:2,fill:"transparent",roughness:2.8,bowing:1.6})}function ti(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#243f78","#1b2c56"),fh(t,0,0,1,1,"#243f78","#1b2c56"),ft(t),fs(fg(.24,.72,t),fu(.24,.72,t),24,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.72)"}),[[.74,.28,13,4],[.84,.44,11,-12],[.72,.58,13,10],[.62,.45,12,-8],[.78,.72,8,18]].forEach(([e,i,h,f])=>{fs(fg(e,i,t),fu(e,i,t),h,f,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.68)"})}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1a315e"),h7(t)}function th(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/6,"#c83c4a","#8f2633"),fh(t,0,1/6,1,2/6,"#fbfdfa","#c7d1cc"),fh(t,0,2/6,1,4/6,"#273f78","#1b2c56"),fh(t,0,4/6,1,5/6,"#fbfdfa","#c7d1cc"),fh(t,0,5/6,1,1,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#7f2c42"),h7(t)}function tf(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1/3,1,"#2d4e8c","#1e3768"),fh(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fh(t,2/3,0,1,1,"#cf3d45","#912936"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8b334e"),h7(t)}function tc(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1/3,1,"#2f8e5c","#1f6540"),fh(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fh(t,2/3,0,1,1,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f6848"),h7(t)}function tl(){var t;let i,h,f,c=h8(),l=fl(c.x,c.y,c.width,c.height);h5(l),h6(l,"#f3c735","#b78618"),fh(c,0,0,1,.25,"#c83a3e","#8f2633"),fh(c,0,.25,1,.75,"#f3c735","#b78618"),fh(c,0,.75,1,1,"#c83a3e","#8f2633"),i=fg(.31,.5,t=c),h=fu(.5,.5,t),f=[[i-22+fk(1.4),h-29+fk(1.4)],[i+22+fk(1.4),h-29+fk(1.4)],[i+18.48+fk(1.4),h+12.76+fk(1.4)],[i+fk(1.2),h+29+fk(1.4)],[i-18.48+fk(1.4),h+12.76+fk(1.4)]],e.polygon(f,{stroke:"#6f2a2b",strokeWidth:1.25,fill:"#d8483f",fillStyle:"solid",roughness:2.1,bowing:1.2}),e.rectangle(i-14+fk(1),h-18+fk(1),28,25,{stroke:"#a77613",strokeWidth:.9,fill:"#f4d24a",fillStyle:"hachure",hachureGap:6,fillWeight:.75,roughness:1.9,bowing:1.1}),e.circle(i,h-42,19,{stroke:"#8b6418",strokeWidth:1,fill:"#f4d24a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fa(i,h-44,7,0),e.line(i-24,h-33,i+24,h-33+fk(2),{stroke:"#8b6418",strokeWidth:1.05,roughness:2.3,bowing:1.6}),fo(c.x+14,c.y+22,c.width-36,c.height-50,"#9c5524"),h7(c)}function to(){var t;let i,h,f=h8(),c=fl(f.x,f.y,f.width,f.height);h5(c),h6(c,"#fbfdfa","#c7d1cc"),fh(f,0,0,.5,1,"#f4cf34","#a98218"),fh(f,.5,0,1,1,"#fbfdfa","#c7d1cc"),i=fg(.74,.53,t=f),h=fu(.53,.53,t),e.line(i-44,h+42,i+36,h-46,{stroke:"#b78716",strokeWidth:4.2,roughness:2.5,bowing:1.8}),e.line(i+44,h+42,i-36,h-46,{stroke:"#a7adb1",strokeWidth:4.2,roughness:2.5,bowing:1.8}),e.circle(i-36,h-42,27,{stroke:"#8b6418",strokeWidth:1.5,fill:"#f4d24a",fillStyle:"hachure",hachureGap:7,fillWeight:.85,roughness:2.1,bowing:1.2}),e.circle(i+36,h-42,27,{stroke:"#7d858a",strokeWidth:1.5,fill:"#dce2e0",fillStyle:"hachure",hachureGap:7,fillWeight:.85,roughness:2.1,bowing:1.2}),e.circle(i,h-58,34,{stroke:"#a98218",strokeWidth:1.5,fill:"#f7e1a0",fillStyle:"solid",roughness:2.2,bowing:1.3}),e.rectangle(i-24+fk(1),h-72+fk(1),48,24,{stroke:"#a98218",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"hachure",hachureGap:6,fillWeight:.7,roughness:2,bowing:1.2}),e.line(i-34,h-19,i+34,h-19+fk(2),{stroke:"#c23d45",strokeWidth:3.2,roughness:2.4,bowing:1.5}),fo(f.x+14,f.y+22,f.width-36,f.height-50,"#b49835"),h7(f)}function ta(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,0,0,1/3,1,"#253f78","#1b2c56"),fh(t,1/3,0,2/3,1,"#f0c83a","#a98218"),fh(t,2/3,0,1,1,"#c83c4a","#8f2633"),ff(t,.5,.5,"#fbfdfa","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#705b4a"),h7(t)}function ts(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,.25,1,"#c83c4a","#8f2633"),fh(t,.25,0,1,1/3,"#15945f","#0f6646"),fh(t,.25,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,.25,2/3,1,1,"#262d2b","#111615"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b3538"),h7(t)}function tn(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.5,.5,t),f=fu(.5,.5,t);h5(i),h6(i,"#c83c4a","#8f2633"),fh(t,0,0,1/3,1,"#262d2b","#111615"),fh(t,1/3,0,2/3,1,"#c83c4a","#8f2633"),fh(t,2/3,0,1,1,"#249064","#176847"),e.circle(h,f,68,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"rgba(251, 253, 250, 0.86)",fillStyle:"hachure",hachureGap:7,fillWeight:.7,roughness:2.2,bowing:1.2}),e.rectangle(h-22+fk(1),f-16+fk(1),44,38,{stroke:"#6f5c38",strokeWidth:1,fill:"transparent",roughness:2.1,bowing:1.2}),e.line(h-28,f+30,h+28,f+30+fk(2),{stroke:"#6f5c38",strokeWidth:1.2,roughness:2.3,bowing:1.5}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b3538"),h7(t)}function td(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=[fg(0,0,t),fu(0,0,t)],f=[fg(1,0,t),fu(1,0,t)],c=[fg(.5,1,t),fu(.5,1,t)];h5(i),h6(i,"#c83c4a","#8f2633"),e.polygon([h,f,c],{stroke:"#111615",strokeWidth:1.2,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),fh(t,.28,.48,.72,.64,"#2f5fa0","#203a74"),e.polygon([[fg(.28,.64,t),fu(.28,.64,t)],[fg(.72,.64,t),fu(.72,.64,t)],c],{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),fa(fg(.5,.36,t),fu(.5,.36,t),36,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function tr(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.74,.54,t),f=fu(.54,.54,t);h5(i),h6(i,"#243f78","#1b2c56"),fh(t,0,0,1,1,"#243f78","#1b2c56"),ft(t),ff(t,.74,.54,"#fbfdfa","#2f6fa4"),e.line(h-22,f+4,h+24,f+4+fk(2),{stroke:"#2f6fa4",strokeWidth:2,roughness:2.2,bowing:1.5}),fs(h,f-20,9,-18,{stroke:"#b68b12",fill:"#ffd84c",hatch:"#ffec62"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function tg(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.5,.5,t),f=fu(.5,.5,t);h5(i),h6(i,"#c83c4a","#8f2633"),e.polygon([[h-62,f-42],[h-18,f-18],[h,f-58],[h+18,f-18],[h+62,f-42],[h+28,f+14],[h+44,f+64],[h,f+35],[h-44,f+64],[h-28,f+14]],{stroke:"#111615",strokeWidth:2,fill:"#262d2b",fillStyle:"solid",roughness:2.3,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function tu(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#d23b43","#912936"),fh(t,0,1/3,1,2/3,"#2f4f9d","#203a74"),fh(t,0,2/3,1,1,"#f0a330","#a96f1f"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#734268"),h7(t)}function tb(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.52,.5,t),f=fu(.52,.5,t);h5(i),h6(i,"#c83c4a","#8f2633"),fh(t,0,0,1,.5,"#c83c4a","#8f2633"),fh(t,0,.5,1,1,"#262d2b","#111615"),e.circle(h,f+4,92,{stroke:"#d7a51d",strokeWidth:6,fill:"transparent",roughness:2.4,bowing:1.4}),e.line(h-58,f+36,h+70,f-38,{stroke:"#d7a51d",strokeWidth:7,roughness:2.5,bowing:1.6}),fa(h-20,f-24,22,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function ty(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#75a9d8","#477aa5"),e.polygon([[fg(.28,.58,t),fu(.28,.58,t)],[fg(.38,.42,t),fu(.38,.42,t)],[fg(.53,.36,t),fu(.53,.36,t)],[fg(.67,.46,t),fu(.67,.46,t)],[fg(.75,.6,t),fu(.75,.6,t)],[fg(.58,.7,t),fu(.58,.7,t)],[fg(.45,.66,t),fu(.45,.66,t)],[fg(.36,.72,t),fu(.36,.72,t)]],{stroke:"#c7d1cc",strokeWidth:1.4,fill:"#fbfdfa",fillStyle:"hachure",hachureGap:10,fillWeight:.58,roughness:2.3,bowing:1.3}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#477aa5"),h7(t)}function tw(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#75a9d8","#477aa5"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#75a9d8","#477aa5"),e.circle(fg(.5,.5,t),fu(.5,.5,t),43,{stroke:"#b68b12",strokeWidth:1.2,fill:"#ffd84c",fillStyle:"hachure",hachureGap:7,fillWeight:.8,roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#477aa5"),h7(t)}function tk(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=[fg(1,.5,t),fu(1,.5,t)],f=fg(.72,.5,t),c=fu(.72,.5,t);h5(i),h6(i,"#243f78","#1b2c56"),e.polygon([[fg(0,0,t),fu(0,0,t)],h,[fg(0,1,t),fu(0,1,t)]],{stroke:"#8f2633",strokeWidth:9,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.line(f-30,c,f+36,c-18+fk(3),{stroke:"#8b6418",strokeWidth:4,roughness:2.4,bowing:1.6}),fs(f-8,c-20,14,-18,{stroke:"#8b6418",fill:"#f4d24a",hatch:"#ffec62"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function tx(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#c83c4a","#8f2633"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function tp(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#3d9fd3","#2c6f9b"),fh(t,0,.62,1,.68,"#f0c83a","#a98218"),fh(t,0,.72,1,.78,"#f0c83a","#a98218"),fs(fg(.2,.24,t),fu(.2,.24,t),29,-18,{stroke:"#fbfdfa",fill:"#c83c4a",hatch:"rgba(251, 253, 250, 0.52)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),h7(t)}function tW(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#253f78","#1b2c56"),fh(t,.27,0,.45,1,"#f0c83a","#a98218"),fh(t,0,.38,1,.62,"#f0c83a","#a98218"),fh(t,.32,0,.4,1,"#c83c4a","#8f2633"),fh(t,0,.44,1,.56,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function tM(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#c83c4a","#8f2633"),fh(t,0,0,1,1/3,"#3d9fd3","#2c6f9b"),fh(t,0,1/3,1,2/3,"#c83c4a","#8f2633"),fh(t,0,2/3,1,1,"#249064","#176847"),e.circle(fg(.48,.5,t),fu(.48,.5,t),.24*t.height,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fg(.52,.5,t),fu(.52,.5,t),.2*t.height,{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.3,bowing:1.2}),fs(fg(.59,.5,t),fu(.59,.5,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#756b4d"),h7(t)}function tS(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#253f78","#1b2c56"),e.polygon([[fg(.34,0,t),fu(.34,0,t)],[fg(.78,0,t),fu(.78,0,t)],[fg(.78,1,t),fu(.78,1,t)]],{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2});for(let e=0;e<8;e+=1)fs(fg(.36+.055*e,.08+.115*e,t),fu(.36+.055*e,.08+.115*e,t),10,-18+4*e,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"});fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function tm(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.5,.5,t),f=fu(.5,.5,t);h5(i),h6(i,"#f0c83a","#a98218"),fh(t,0,0,1/3,1,"#253f78","#1b2c56"),fh(t,1/3,0,2/3,1,"#f0c83a","#a98218"),fh(t,2/3,0,1,1,"#253f78","#1b2c56"),e.line(h,f-48,h,f+54,{stroke:"#262d2b",strokeWidth:4,roughness:2.2,bowing:1.4}),e.line(h,f-10,h-24,f-42,{stroke:"#262d2b",strokeWidth:3,roughness:2.2,bowing:1.4}),e.line(h,f-10,h+24,f-42,{stroke:"#262d2b",strokeWidth:3,roughness:2.2,bowing:1.4}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#705b4a"),h7(t)}function tP(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#176847","#0f4f37"),e.circle(fg(.47,.5,t),fu(.47,.5,t),.42*t.height,{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.3,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),h7(t)}function tv(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f4cf34","#a98218"),fh(t,0,0,1/3,1,"#262d2b","#111615"),fh(t,1/3,0,2/3,1,"#f4cf34","#a98218"),fh(t,2/3,0,1,1,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f4f28"),h7(t)}function tG(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#249064","#176847"),fh(t,0,0,1,.5,"#c83c4a","#8f2633"),fh(t,0,.5,1,1,"#249064","#176847"),fa(fg(.5,.5,t),fu(.5,.5,t),30,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function tI(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#fbfdfa","#c7d1cc"),fh(t,0,1/3,1,2/3,"#249064","#176847"),fh(t,0,2/3,1,1,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#5d5a48"),h7(t)}function tO(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=[[fg(.28,0,t),fu(.28,0,t)]];for(let e=0;e<5;e+=1)h.push([fg(.42,(e+.5)/5,t),fu(.42,(e+.5)/5,t)]),h.push([fg(.28,(e+1)/5,t),fu(.28,(e+1)/5,t)]);h5(i),h6(i,"#c83c4a","#8f2633"),e.polygon([[fg(0,0,t),fu(0,0,t)],...h,[fg(0,1,t),fu(0,1,t)]],{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function tE(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.5,.5,t),f=fu(.5,.5,t);h5(i),h6(i,"#249064","#176847"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(1,0,t),fu(1,0,t)],[h,f]],{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fg(0,1,t),fu(0,1,t)],[fg(1,1,t),fu(1,1,t)],[h,f]],{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fe(t,0,0,1,1,"#fbfdfa",30),fe(t,1,0,0,1,"#fbfdfa",30),e.circle(h,f,98,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),[[.5,.43],[.45,.56],[.55,.56]].forEach(([e,i],h)=>fs(fg(e,i,t),fu(e,i,t),13,-18+8*h,{stroke:"#8f2633",fill:"#c83c4a",hatch:"rgba(200, 60, 74, 0.5)"})),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#5d5a48"),h7(t)}function tL(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,0,0,.4,1,"#168453","#0f5f3d"),fh(t,.4,0,1,.5,"#f0c83a","#a98218"),fh(t,.4,.5,1,1,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#76623a"),h7(t)}function tC(){tf()}function tT(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#c83c4a","#8f2633"),ft(t),ff(t,.74,.54,"#fbfdfa","#249064"),e.circle(fg(.74,.5,t),fu(.74,.5,t),24,{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"hachure",hachureGap:5,fillWeight:.75,roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function t$(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.5,.5,t),f=fu(.5,.5,t);h5(i),h6(i,"#f0c83a","#a98218"),fe(t,0,.72,1,.18,"#fbfdfa",54),fe(t,0,.72,1,.18,"#262d2b",28),e.rectangle(h-24+fk(1),f-18+fk(1),48,34,{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"hachure",hachureGap:7,fillWeight:.7,roughness:2.2,bowing:1.2}),e.line(h-42,f+24,h+42,f+24+fk(2),{stroke:"#262d2b",strokeWidth:2.2,roughness:2.3,bowing:1.5}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function t_(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,0,0,1,1/3,"#c83c4a","#8f2633"),fh(t,0,1/3,1,2/3,"#f0c83a","#a98218"),fh(t,0,2/3,1,1,"#249064","#176847"),ff(t,.5,.5,"#fbfdfa","#8f2633"),fa(fg(.5,.47,t),fu(.5,.47,t),9,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function tR(){iY()}function tz(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#249064","#176847"),e.polygon([[fg(.5,.12,t),fu(.5,.12,t)],[fg(.88,.5,t),fu(.88,.5,t)],[fg(.5,.88,t),fu(.5,.88,t)],[fg(.12,.5,t),fu(.12,.5,t)]],{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fg(.5,.5,t),fu(.5,.5,t),.38*t.height,{stroke:"#203a74",strokeWidth:1.2,fill:"#2f4f9d",fillStyle:"solid",roughness:2.3,bowing:1.2}),fh({x:t.x+.35*t.width,y:t.y+.47*t.height,width:.3*t.width,height:.08*t.height},0,0,1,1,"#fbfdfa","#c7d1cc"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),h7(t)}function tD(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#3d9fd3","#2c6f9b"),fh(t,0,0,1,1/3,"#3d9fd3","#2c6f9b"),fh(t,0,1/3,1,2/3,"#f0c83a","#a98218"),fh(t,0,2/3,1,1,"#3d9fd3","#2c6f9b"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.42,.5,t),fu(.42,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#111615",strokeWidth:1.2,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#416a88"),h7(t)}function tA(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#ee8b2c","#a9601d"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(1,0,t),fu(1,0,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.line(fg(.38,.66,t),fu(.38,.66,t),fg(.7,.34,t),fu(.7,.34,t),{stroke:"#fbfdfa",strokeWidth:8,roughness:2.6,bowing:2}),fs(fg(.56,.5,t),fu(.56,.5,t),16,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.6)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#9c5524"),h7(t)}function tX(){ij()}function tY(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#75a9d8","#477aa5"),fh(t,0,0,1,.36,"#75a9d8","#477aa5"),fh(t,0,.36,1,.42,"#fbfdfa","#c7d1cc"),fh(t,0,.42,1,.58,"#262d2b","#111615"),fh(t,0,.58,1,.64,"#fbfdfa","#c7d1cc"),fh(t,0,.64,1,1,"#75a9d8","#477aa5"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#416a88"),h7(t)}function tj(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#249064","#176847"),fh(t,0,0,.18,1,"#fbfdfa","#c7d1cc"),fh(t,.18,0,1,.68,"#c83c4a","#8f2633"),fh(t,.18,.68,1,1,"#249064","#176847");for(let i=0;i<6;i+=1)e.line(fg(.035,i/6,t),fu(.035,i/6,t),fg(.145,(i+.5)/6,t),fu(.145,(i+.5)/6,t),{stroke:"#c83c4a",strokeWidth:2.4,roughness:2.2,bowing:1.5});fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function tq(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#253f78","#1b2c56"),fh(t,0,0,1,.12,"#c83c4a","#8f2633"),fh(t,0,.88,1,1,"#c83c4a","#8f2633"),e.circle(fg(.5,.5,t),fu(.5,.5,t),.42*t.height,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"hachure",hachureGap:9,fillWeight:.45,roughness:2.3,bowing:1.2}),ff(t,.5,.5,"#f0c83a","#249064"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function tF(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.5,.5,t),f=fu(.5,.5,t);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,.25,1,"#c83c4a","#8f2633"),fh(t,.75,0,1,1,"#c83c4a","#8f2633"),e.polygon([[h,f-74],[h+17,f-28],[h+55,f-42],[h+34,f-4],[h+70,f+8],[h+28,f+22],[h+36,f+64],[h,f+36],[h-36,f+64],[h-28,f+22],[h-70,f+8],[h-34,f-4],[h-55,f-42],[h-17,f-28]],{stroke:"#8f2633",strokeWidth:1.8,fill:"#c83c4a",fillStyle:"solid",roughness:2.4,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function tV(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#176847","#0f4f37"),e.circle(fg(.22,.34,t),fu(.22,.34,t),70,{stroke:"#b68b12",strokeWidth:1.2,fill:"#ffd84c",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fg(.26,.34,t),fu(.26,.34,t),62,{stroke:"#0f4f37",strokeWidth:1,fill:"#176847",fillStyle:"solid",roughness:2.2,bowing:1.2}),[[.64,.3,12],[.75,.44,11],[.62,.58,12],[.8,.68,8]].forEach(([e,i,h],f)=>fa(fg(e,i,t),fu(e,i,t),h,-18+5*f)),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),h7(t)}function tZ(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#3d9fd3","#2c6f9b"),fe(t,.1,1,1,.1,"#f0c83a",42),fe(t,.1,1,1,.1,"#c83c4a",24),fa(fg(.22,.22,t),fu(.22,.22,t),31,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),h7(t)}function tQ(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.25,"#2f5fa0","#203a74"),fh(t,0,.25,1,.5,"#fbfdfa","#c7d1cc"),fh(t,0,.5,1,.75,"#249064","#176847"),fh(t,0,.75,1,1,"#f0c83a","#a98218"),fh(t,.44,0,.56,1,"#c83c4a","#8f2633"),fa(fg(.2,.13,t),fu(.2,.13,t),22,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function tH(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#249064","#176847"),e.polygon(fr(0,0,1,1,t),{stroke:"#176847",strokeWidth:1.2,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fg(.28,1,t),fu(.28,1,t)],[fg(0,1,t),fu(0,1,t)],[fg(.72,0,t),fu(.72,0,t)],[fg(1,0,t),fu(1,0,t)]],{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fg(.72,0,t),fu(.72,0,t)],[fg(1,0,t),fu(1,0,t)],[fg(1,1,t),fu(1,1,t)],[fg(.28,1,t),fu(.28,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function tN(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#c83c4a","#8f2633"),fh(t,.41,.23,.59,.77,"#fbfdfa","#c7d1cc"),fh(t,.25,.41,.75,.59,"#fbfdfa","#c7d1cc"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function tB(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1/3,1,"#ee8b2c","#a9601d"),fh(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fh(t,2/3,0,1,1,"#249064","#176847"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#7f7041"),h7(t)}function tU(){let t=h8(),e=fl(t.x,t.y,t.width,t.height),i=fg(.72,.5,t),h=fu(.72,.5,t);h5(e),h6(e,"#243f78","#1b2c56"),ft(t);for(let t=0;t<15;t+=1){let e=2*Math.PI*t/15;fs(i+54*Math.cos(e),h+54*Math.sin(e),7,-18+t,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.6)"})}fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function tJ(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,.33,.5,"#2f4f9d","#203a74"),fh(t,.33,0,1,.5,"#fbfdfa","#c7d1cc"),fh(t,0,.5,1,1,"#c83c4a","#8f2633"),fs(fg(.165,.25,t),fu(.165,.25,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function tK(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#c83c4a","#8f2633"),fh(t,0,0,1/3,1,"#249064","#176847"),fh(t,1/3,0,2/3,1,"#c83c4a","#8f2633"),fh(t,2/3,0,1,1,"#f0c83a","#a98218"),fa(fg(.5,.5,t),fu(.5,.5,t),31,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function t2(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f4cf34","#a98218"),fh(t,0,0,1,.5,"#f4cf34","#a98218"),fh(t,0,.5,1,.75,"#2f4f9d","#203a74"),fh(t,0,.75,1,1,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#80623f"),h7(t)}function t1(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/6,"#253f78","#1b2c56"),fh(t,0,1/6,1,2/6,"#fbfdfa","#c7d1cc"),fh(t,0,2/6,1,4/6,"#c83c4a","#8f2633"),fh(t,0,4/6,1,5/6,"#fbfdfa","#c7d1cc"),fh(t,0,5/6,1,1,"#253f78","#1b2c56"),e.circle(fg(.38,.5,t),fu(.38,.5,t),36,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"hachure",hachureGap:7,fillWeight:.45,roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function t3(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc");for(let e=0;e<5;e+=1)fh(t,0,e/5,1,(e+1)/5,e%2==0?"#2f4f9d":"#fbfdfa",e%2==0?"#203a74":"#c7d1cc");e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.42,.5,t),fu(.42,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(fg(.16,.5,t),fu(.16,.5,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#4d5d86"),h7(t)}function t0(){let t=h8(),e=fl(t.x,t.y,t.width,t.height),i=fg(.34,.6,t),h=fu(.34,.6,t);h5(e),h6(e,"#253f78","#1b2c56"),fh(t,0,.52,1,.58,"#fbfdfa","#c7d1cc"),fh(t,0,.6,1,.68,"#c83c4a","#8f2633"),fh(t,0,.7,1,.76,"#fbfdfa","#c7d1cc");for(let t=0;t<10;t+=1){let e=2*Math.PI*t/10;fa(i+42*Math.cos(e),h+42*Math.sin(e),7,-18+4*t)}fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function t4(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#253f78","#1b2c56"),fh(t,0,.68,1,.78,"#f0c83a","#a98218"),fs(fg(.24,.28,t),fu(.24,.28,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fs(fg(.34,.38,t),fu(.34,.38,t),11,-10,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function t8(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#243f78","#1b2c56"),fh(t,.5,0,1,1,"#176847","#0f4f37"),ft(t),e.circle(fg(.72,.5,t),fu(.72,.5,t),70,{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"hachure",hachureGap:8,fillWeight:.6,roughness:2.2,bowing:1.2}),fs(fg(.3,.75,t),fu(.3,.75,t),16,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.6)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function t5(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),e.polygon([[fg(.36,.43,t),fu(.36,.43,t)],[fg(.48,.36,t),fu(.48,.36,t)],[fg(.66,.42,t),fu(.66,.42,t)],[fg(.58,.54,t),fu(.58,.54,t)],[fg(.42,.54,t),fu(.42,.54,t)]],{stroke:"#a9601d",strokeWidth:1.2,fill:"#ee8b2c",fillStyle:"hachure",hachureGap:8,fillWeight:.7,roughness:2.2,bowing:1.2}),e.line(fg(.38,.64,t),fu(.38,.64,t),fg(.5,.58,t),fu(.5,.58,t),{stroke:"#249064",strokeWidth:2,roughness:2.2,bowing:1.5}),e.line(fg(.62,.64,t),fu(.62,.64,t),fg(.5,.58,t),fu(.5,.58,t),{stroke:"#249064",strokeWidth:2,roughness:2.2,bowing:1.5}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#cbd8ce"),h7(t)}function t6(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.5,"#fbfdfa","#c7d1cc"),fh(t,0,.5,1,1,"#c83c4a","#8f2633"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.46,.5,t),fu(.46,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#203a74",strokeWidth:1.2,fill:"#2f4f9d",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function t7(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f4cf34","#a98218"),fh(t,0,0,1,1/3,"#262d2b","#111615"),fh(t,0,1/3,1,2/3,"#c83c4a","#8f2633"),fh(t,0,2/3,1,1,"#f4cf34","#a98218"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#745232"),h7(t)}function t9(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#249064","#176847"),fh(t,0,0,1,.5,"#4f9fd3","#2c6f9b"),fh(t,0,.5,1,1,"#249064","#176847"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.42,.5,t),fu(.42,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(fg(.16,.5,t),fu(.16,.5,t),19,-18,{stroke:"#8f2633",fill:"#c83c4a",hatch:"#d8585f"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),h7(t)}function et(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#c83c4a","#8f2633"),fh(t,.29,0,.41,1,"#fbfdfa","#c7d1cc"),fh(t,0,.42,1,.58,"#fbfdfa","#c7d1cc"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function ee(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#176847","#0f4f37"),fh(t,.43,0,.57,1,"#f0c83a","#a98218"),fh(t,0,.4,1,.6,"#f0c83a","#a98218"),fh(t,.47,0,.53,1,"#262d2b","#111615"),fh(t,0,.46,1,.54,"#262d2b","#111615"),fh(t,.5,0,.54,1,"#fbfdfa","#c7d1cc"),fh(t,0,.5,1,.56,"#fbfdfa","#c7d1cc"),e.circle(fg(.5,.5,t),fu(.5,.5,t),76,{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.3,bowing:1.2}),fa(fg(.5,.5,t),fu(.5,.5,t),18,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),h7(t)}function ei(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,.44,.42,"#253f78","#1b2c56"),fh(t,.56,0,1,.42,"#c83c4a","#8f2633"),fh(t,0,.58,.44,1,"#c83c4a","#8f2633"),fh(t,.56,.58,1,1,"#253f78","#1b2c56"),fh(t,.44,0,.56,1,"#fbfdfa","#c7d1cc"),fh(t,0,.42,1,.58,"#fbfdfa","#c7d1cc"),ff(t,.5,.5,"#fbfdfa","#249064"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function eh(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,.5,1,"#249064","#176847"),fh(t,.5,0,1,1,"#fbfdfa","#c7d1cc"),e.circle(fg(.52,.5,t),fu(.52,.5,t),.32*t.height,{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fg(.57,.5,t),fu(.57,.5,t),.27*t.height,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),fs(fg(.62,.5,t),fu(.62,.5,t),22,-18,{stroke:"#8f2633",fill:"#c83c4a",hatch:"#d8585f"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),h7(t)}function ef(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,0,0,1,.5,"#f0c83a","#a98218"),fh(t,0,.5,1,.75,"#2f4f9d","#203a74"),fh(t,0,.75,1,1,"#c83c4a","#8f2633"),ff(t,.5,.5,"#fbfdfa","#a98218"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#80623f"),h7(t)}function ec(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#4f9fd3","#2c6f9b"),fh(t,0,1/3,1,2/3,"#262d2b","#111615"),fh(t,0,2/3,1,1,"#fbfdfa","#c7d1cc"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3c5f73"),h7(t)}function el(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#c83c4a","#8f2633"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#262d2b","#111615"),ff(t,.5,.5,"#d7a735","#a98218"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function eo(){var t,i,h,f;let c,l;t="#262d2b",i="#fbfdfa",h="#249064",f=!0,h5(l=fl((c=h8()).x,c.y,c.width,c.height)),h6(l,i,"#c7d1cc"),fh(c,0,0,1,1/3,t,"#262d2b"===t?"#111615":fy(t,.75)),fh(c,0,1/3,1,2/3,i,"#fbfdfa"===i?"#c7d1cc":fy(i,.75)),fh(c,0,2/3,1,1,h,fy(h,.75)),e.polygon([[fg(0,0,c),fu(0,0,c)],[fg(.38,.5,c),fu(.38,.5,c)],[fg(0,1,c),fu(0,1,c)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),f&&(e.circle(fg(.57,.5,c),fu(.57,.5,c),44,{stroke:"#8f2633",strokeWidth:1,fill:"transparent",roughness:2.2,bowing:1.2}),fs(fg(.64,.5,c),fu(.64,.5,c),13,-18,{stroke:"#8f2633",fill:"#c83c4a",hatch:"#d8585f"})),fo(c.x+14,c.y+22,c.width-36,c.height-50,"#6f353c"),h7(c)}function ea(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#4f9fd3","#2c6f9b"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(1,0,t),fu(1,0,t)],[fg(0,.5,t),fu(0,.5,t)]],{stroke:"#176847",strokeWidth:1,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(1,.5,t),fu(1,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.line(fg(.2,.38,t),fu(.2,.38,t),fg(.2,.64,t),fu(.2,.64,t),{stroke:"#f0c83a",strokeWidth:4,roughness:2.3,bowing:1.6}),fa(fg(.2,.34,t),fu(.2,.34,t),13,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function es(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#f0c83a","#a98218"),fh(t,0,0,1,1/3,"#249064","#176847"),fh(t,0,1/3,1,2/3,"#f0c83a","#a98218"),fh(t,0,2/3,1,1,"#c83c4a","#8f2633"),e.circle(fg(.5,.5,t),fu(.5,.5,t),.34*t.height,{stroke:"#203a74",strokeWidth:1.2,fill:"#2f4f9d",fillStyle:"solid",roughness:2.3,bowing:1.2}),fa(fg(.5,.5,t),fu(.5,.5,t),28,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function en(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,.28,0,.42,1,"#2f4f9d","#203a74"),fh(t,0,.38,1,.56,"#2f4f9d","#203a74"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#4d5d86"),h7(t)}function ed(){h9("#75a9d8","#477aa5","#fbfdfa","#8f2633")}function er(){h9("#243f78","#1b2c56","#fbfdfa","#2f6fa4")}function eg(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#4f9fd3","#2c6f9b"),[[.5,.28],[.68,.5],[.5,.72],[.32,.5]].forEach(([e,i],h)=>{fs(fg(e,i,t),fu(e,i,t),20,-18+5*h,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"})}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),h7(t)}function eu(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,.28,0,.44,1,"#2f4f9d","#203a74"),fh(t,0,.38,1,.58,"#2f4f9d","#203a74"),fh(t,.32,0,.4,1,"#c83c4a","#8f2633"),fh(t,0,.43,1,.53,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#cbd8ce"),h7(t)}function eb(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,0,0,1,1/3,"#249064","#176847"),fh(t,0,1/3,1,2/3,"#f0c83a","#a98218"),fh(t,0,2/3,1,1,"#3d78bd","#284f84"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#5d7653"),h7(t)}function ey(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#253f78","#1b2c56"),fe(t,0,0,1,1,"#fbfdfa",26),fe(t,1,0,0,1,"#fbfdfa",26),fe(t,0,0,1,1,"#c83c4a",10),fe(t,1,0,0,1,"#c83c4a",10),fh(t,.43,0,.57,1,"#fbfdfa","#c7d1cc"),fh(t,0,.39,1,.61,"#fbfdfa","#c7d1cc"),fh(t,.47,0,.53,1,"#c83c4a","#8f2633"),fh(t,0,.45,1,.55,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function ew(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#c83c4a","#8f2633"),fh(t,.1,.16,.9,.84,"#f0c83a","#a98218"),e.polygon([[fg(.1,.16,t),fu(.1,.16,t)],[fg(.5,.5,t),fu(.5,.5,t)],[fg(.1,.84,t),fu(.1,.84,t)]],{stroke:"#176847",strokeWidth:1,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fg(.9,.16,t),fu(.9,.16,t)],[fg(.5,.5,t),fu(.5,.5,t)],[fg(.9,.84,t),fu(.9,.84,t)]],{stroke:"#176847",strokeWidth:1,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(fg(.5,.5,t),fu(.5,.5,t),28,-18,{stroke:"#b68b12",fill:"#ffd84c",hatch:"#ffec62"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function ek(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,.44,0,.56,1,"#c83c4a","#8f2633"),fh(t,0,.42,1,.58,"#c83c4a","#8f2633"),[[.24,.23],[.76,.23],[.24,.77],[.76,.77]].forEach(([e,i])=>{fh(t,e-.035,i-.11,e+.035,i+.11,"#c83c4a","#8f2633"),fh(t,e-.105,i-.035,e+.105,i+.035,"#c83c4a","#8f2633")}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function ex(){tf()}function ep(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,.43,0,.57,1,"#c83c4a","#8f2633"),fh(t,0,.4,1,.6,"#c83c4a","#8f2633"),fh(t,.47,.18,.53,.82,"#f0c83a","#a98218"),fh(t,.24,.47,.76,.53,"#f0c83a","#a98218"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function eW(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,0,0,1,1/3,"#c83c4a","#8f2633"),fh(t,0,1/3,1,2/3,"#f0c83a","#a98218"),fh(t,0,2/3,1,1,"#249064","#176847"),fs(fg(.5,.5,t),fu(.5,.5,t),30,-18,{stroke:"#111615",fill:"#262d2b",hatch:"rgba(38, 45, 43, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function eM(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.5,.48,t),f=fu(.5,.48,t);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,.68,1,1,"#c83c4a","#8f2633"),e.rectangle(h-48,f-38,96,54,{stroke:"#8f2633",strokeWidth:1.4,fill:"#c83c4a",fillStyle:"hachure",hachureGap:7,fillWeight:.75,roughness:2.2,bowing:1.2}),e.line(h,f+18,h,f+86,{stroke:"#f0c83a",strokeWidth:4,roughness:2.3,bowing:1.5}),e.circle(h,f+92,18,{stroke:"#a98218",strokeWidth:1,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function eS(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.5,"#fbfdfa","#c7d1cc"),fh(t,0,.5,1,1,"#c83c4a","#8f2633"),e.circle(fg(.38,.5,t),fu(.38,.5,t),.42*t.height,{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.3,bowing:1.2}),fh({x:fg(.17,.5,t),y:fu(.5,.5,t),width:.42*t.width,height:.22*t.height},0,0,1,1,"#fbfdfa","#c7d1cc"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function em(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#249064","#176847"),fh(t,0,0,1,.33,"#c83c4a","#8f2633"),fh(t,0,.33,1,.4,"#fbfdfa","#c7d1cc"),fh(t,0,.4,1,.6,"#253f78","#1b2c56"),fh(t,0,.6,1,.67,"#fbfdfa","#c7d1cc"),fh(t,0,.67,1,1,"#249064","#176847"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function eP(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f4cf34","#a98218"),fh(t,0,0,1/3,1,"#c83c4a","#8f2633"),fh(t,1/3,0,2/3,1,"#f4cf34","#a98218"),fh(t,2/3,0,1,1,"#249064","#176847"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function ev(){tf()}function eG(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#249064","#176847"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#c83c4a","#8f2633"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.32,.5,t),fu(.32,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#2c6f9b",strokeWidth:1.2,fill:"#4f9fd3",fillStyle:"solid",roughness:2.2,bowing:1.2}),ff(t,.5,.5,"#fbfdfa","#249064"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function eI(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc");for(let e=0;e<9;e+=1){let i=e%2==0?"#2f78bd":"#fbfdfa",h=e%2==0?"#20588e":"#c7d1cc";fh(t,0,e/9,1,(e+1)/9,i,h)}fh(t,0,0,.38,5/9,"#2f78bd","#20588e"),fh(t,.145,0,.235,5/9,"#fbfdfa","#c7d1cc"),fh(t,0,2/9,.38,3/9,"#fbfdfa","#c7d1cc"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3d6e98"),h7(t)}function eO(){h9("#243f78","#1b2c56","#fbfdfa","#249064")}function eE(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1/3,1,"#75a9d8","#477aa5"),fh(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fh(t,2/3,0,1,1,"#75a9d8","#477aa5"),ff(t,.5,.5,"#f0c83a","#249064"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#477aa5"),h7(t)}function eL(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#253f78","#1b2c56"),fh(t,0,0,1,.08,"#c83c4a","#8f2633"),fh(t,0,.92,1,1,"#c83c4a","#8f2633"),fh(t,0,0,.06,1,"#c83c4a","#8f2633"),fh(t,.94,0,1,1,"#c83c4a","#8f2633"),e.circle(fg(.5,.5,t),fu(.5,.5,t),84,{stroke:"#8f2633",strokeWidth:1.2,fill:"#75a9d8",fillStyle:"hachure",hachureGap:8,fillWeight:.6,roughness:2.2,bowing:1.2}),e.line(fg(.44,.54,t),fu(.44,.54,t),fg(.56,.54,t),fu(.56,.54,t),{stroke:"#249064",strokeWidth:3,roughness:2.2,bowing:1.5}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function eC(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,0,0,.33,1,"#c83c4a","#8f2633"),fh(t,.33,0,1,.5,"#f0c83a","#a98218"),fh(t,.33,.5,1,1,"#249064","#176847"),fs(fg(.165,.5,t),fu(.165,.5,t),26,-18,{stroke:"#111615",fill:"#262d2b",hatch:"rgba(38, 45, 43, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function eT(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#249064","#176847"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.9,.5,t),fu(.9,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#c7d1cc",strokeWidth:7,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fg(0,.05,t),fu(0,.05,t)],[fg(.42,.5,t),fu(.42,.5,t)],[fg(0,.95,t),fu(0,.95,t)]],{stroke:"#111615",strokeWidth:5,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),h7(t)}function e$(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.5,.5,t),f=fu(.5,.5,t);h5(i),h6(i,"#c83c4a","#8f2633");for(let t=0;t<5;t+=1){let i=-Math.PI/2+2*Math.PI*t/5,c=h+42*Math.cos(i),l=f+42*Math.sin(i);e.circle(c,l,42,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.4,bowing:1.2})}e.circle(h,f,22,{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.1}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function e_(){ti()}function eR(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#4f9fd3","#2c6f9b"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#4f9fd3","#2c6f9b"),[[.42,.43],[.58,.43],[.5,.5],[.42,.57],[.58,.57]].forEach(([e,i],h)=>{fs(fg(e,i,t),fu(e,i,t),9,-18+4*h,{stroke:"#2c6f9b",fill:"#4f9fd3",hatch:"#75b6de"})}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),h7(t)}function ez(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#c83c4a","#8f2633"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#253f78","#1b2c56"),ff(t,.5,.5,"#fbfdfa","#c83c4a"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function eD(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.5,"#253f78","#1b2c56"),fh(t,0,.5,1,1,"#c83c4a","#8f2633"),fh(t,.38,.38,.62,.62,"#fbfdfa","#c7d1cc"),ff(t,.5,.5,"#f0c83a","#249064"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function eA(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#c83c4a","#8f2633"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#249064","#176847"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#71634e"),h7(t)}function eX(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.5,"#c83c4a","#8f2633"),fh(t,0,.5,1,1,"#fbfdfa","#c7d1cc"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function eY(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1/3,1,"#249064","#176847"),fh(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fh(t,2/3,0,1,1,"#ee8b2c","#a9601d"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#75744a"),h7(t)}function ej(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,.16,1,.26,"#2f4f9d","#203a74"),fh(t,0,.74,1,.84,"#2f4f9d","#203a74"),fs(fg(.5,.5,t),fu(.5,.5,t),46,-30,{stroke:"#203a74",fill:"rgba(47, 79, 157, 0.08)",hatch:"#2f4f9d"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#4d5d86"),h7(t)}function eq(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.5,.5,t),f=fu(.5,.5,t);h5(i),h6(i,"#c83c4a","#8f2633");for(let t=0;t<3;t+=1){let i=-Math.PI/2+2*Math.PI*t/3,c=h+42*Math.cos(i),l=f+42*Math.sin(i),o=h+78*Math.cos(i+.55),a=f+78*Math.sin(i+.55);e.line(h,f,c,l,{stroke:"#f0c83a",strokeWidth:7,roughness:2.4,bowing:1.6}),e.line(c,l,o,a,{stroke:"#f0c83a",strokeWidth:6,roughness:2.4,bowing:1.6})}e.circle(h,f,24,{stroke:"#a98218",strokeWidth:1,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function eF(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.5,.5,t),f=fu(.5,.5,t);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#ee8b2c","#a9601d"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#249064","#176847"),e.circle(h,f,68,{stroke:"#203a74",strokeWidth:1.4,fill:"transparent",roughness:2.1,bowing:1.1});for(let t=0;t<12;t+=1){let i=2*Math.PI*t/12;e.line(h,f,h+34*Math.cos(i),f+34*Math.sin(i),{stroke:"#203a74",strokeWidth:.65,roughness:2,bowing:1.3})}fo(t.x+14,t.y+22,t.width-36,t.height-50,"#756b4d"),h7(t)}function eV(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc");for(let e=0;e<8;e+=1)fh(t,0,e/8,1,(e+.5)/8,"#2f5fa0","#203a74");ft(t),e.line(fg(.72,.42,t),fu(.72,.42,t),fg(.72,.7,t),fu(.72,.7,t),{stroke:"#6f4f28",strokeWidth:5,roughness:2.4,bowing:1.7}),fa(fg(.72,.34,t),fu(.72,.34,t),22,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#4d5d86"),h7(t)}function eZ(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#c83c4a","#8f2633"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#262d2b","#111615"),e.line(fg(.38,.5,t),fu(.38,.5,t),fg(.62,.5,t),fu(.62,.5,t),{stroke:"#249064",strokeWidth:5,roughness:2.2,bowing:1.5}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function eQ(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#249064","#176847"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#c83c4a","#8f2633"),fh(t,.47,.39,.53,.61,"#c83c4a","#8f2633"),fs(fg(.5,.5,t),fu(.5,.5,t),20,-18,{stroke:"#8f2633",fill:"rgba(200, 60, 74, 0.18)",hatch:"#c83c4a"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function eH(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#2f4f9d","#203a74"),fh(t,.28,0,.46,1,"#fbfdfa","#c7d1cc"),fh(t,0,.36,1,.58,"#fbfdfa","#c7d1cc"),fh(t,.33,0,.41,1,"#c83c4a","#8f2633"),fh(t,0,.43,1,.51,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#4f4e86"),h7(t)}function eN(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fe(t,0,0,1,1,"#c83c4a",13),fe(t,1,0,0,1,"#c83c4a",13),ff(t,.5,.27,"#f0c83a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#cbd8ce"),h7(t)}function eB(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#249064","#176847"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.5,.5,t),fu(.5,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#111615",strokeWidth:1,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fg(1,0,t),fu(1,0,t)],[fg(.5,.5,t),fu(.5,.5,t)],[fg(1,1,t),fu(1,1,t)]],{stroke:"#111615",strokeWidth:1,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),fe(t,0,0,1,1,"#f0c83a",26),fe(t,1,0,0,1,"#f0c83a",26),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),h7(t)}function eU(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#262d2b","#111615"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#249064","#176847"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.44,.5,t),fu(.44,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(fg(.18,.5,t),fu(.18,.5,t),16,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function eJ(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.3,"#262d2b","#111615"),fh(t,0,.34,1,.66,"#c83c4a","#8f2633"),fh(t,0,.7,1,1,"#249064","#176847"),e.circle(fg(.5,.5,t),fu(.5,.5,t),76,{stroke:"#111615",strokeWidth:1.3,fill:"#b64f36",fillStyle:"hachure",hachureGap:8,fillWeight:.55,roughness:2.3,bowing:1.2}),e.line(fg(.42,.25,t),fu(.42,.25,t),fg(.58,.75,t),fu(.58,.75,t),{stroke:"#fbfdfa",strokeWidth:3,roughness:2.2,bowing:1.5}),e.line(fg(.58,.25,t),fu(.58,.25,t),fg(.42,.75,t),fu(.42,.75,t),{stroke:"#fbfdfa",strokeWidth:3,roughness:2.2,bowing:1.5}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function eK(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.5,.5,t),f=fu(.5,.5,t);h5(i),h6(i,"#c83c4a","#8f2633"),e.circle(h,f,90,{stroke:"#b68b12",strokeWidth:1.2,fill:"#ffd84c",fillStyle:"hachure",hachureGap:9,fillWeight:.7,roughness:2.3,bowing:1.2});for(let t=0;t<8;t+=1){let i=2*Math.PI*t/8;e.line(h,f,h+68*Math.cos(i),f+68*Math.sin(i),{stroke:"#c83c4a",strokeWidth:1,roughness:2,bowing:1.3})}fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function e2(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#253f78","#1b2c56"),fh(t,0,0,1,.25,"#253f78","#1b2c56"),fh(t,0,.25,1,.75,"#c83c4a","#8f2633"),fh(t,0,.75,1,1,"#253f78","#1b2c56"),fh(t,.38,.48,.62,.66,"#fbfdfa","#c7d1cc"),e.polygon([[fg(.4,.48,t),fu(.4,.48,t)],[fg(.5,.34,t),fu(.5,.34,t)],[fg(.6,.48,t),fu(.6,.48,t)]],{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function e1(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#c83c4a","#8f2633"),fh(t,0,.5,1,1,"#253f78","#1b2c56");for(let e=0;e<3;e+=1)fe({x:t.x,y:t.y+t.height*(.58+.11*e),width:t.width,height:.05*t.height},0,0,1,0,"#fbfdfa",5);fa(fg(.5,.34,t),fu(.5,.34,t),38,-18),e.line(fg(.42,.24,t),fu(.42,.24,t),fg(.58,.24,t),fu(.58,.24,t),{stroke:"#f0c83a",strokeWidth:5,roughness:2.4,bowing:2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function e3(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.25,"#f0c83a","#a98218"),fh(t,0,.25,1,.5,"#fbfdfa","#c7d1cc"),fh(t,0,.5,1,.75,"#c83c4a","#8f2633"),fh(t,0,.75,1,1,"#253f78","#1b2c56"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.42,.5,t),fu(.42,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#176847",strokeWidth:1.2,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fg(.17,.5,t),fu(.17,.5,t),54,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fg(.2,.5,t),fu(.2,.5,t),48,{stroke:"#176847",strokeWidth:1,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function e0(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#249064","#176847"),e.polygon([[fg(1,0,t),fu(1,0,t)],[fg(0,1,t),fu(0,1,t)],[fg(1,1,t),fu(1,1,t)]],{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fe(t,0,1,1,0,"#f0c83a",46),fe(t,0,1,1,0,"#262d2b",28),[[.38,.58],[.62,.42]].forEach(([e,i])=>fs(fg(e,i,t),fu(e,i,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"})),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),h7(t)}function e4(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#c83c4a","#8f2633"),fh(t,0,0,1,.18,"#253f78","#1b2c56"),fh(t,0,.18,1,.24,"#fbfdfa","#c7d1cc"),fh(t,0,.76,1,.82,"#fbfdfa","#c7d1cc"),fh(t,0,.82,1,1,"#253f78","#1b2c56"),e.circle(fg(.32,.5,t),fu(.32,.5,t),82,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(fg(.32,.5,t),fu(.32,.5,t),30,-18,{stroke:"#8f2633",fill:"#c83c4a",hatch:"#d8585f"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function e8(){let i=h8(),h=fl(i.x,i.y,i.width,i.height),f=fg(.5,.5,i),c=fu(.5,.5,i),l=.18*i.height;h5(h),h6(h,"#fbfdfa","#c7d1cc"),t.save(),t.translate(f,c),t.rotate(-34*Math.PI/180),t.beginPath(),t.arc(0,0,l,0,2*Math.PI),t.clip(),t.fillStyle="#c83c4a",t.fillRect(-l,-l,2*l,l),t.fillStyle="#253f78",t.fillRect(-l,0,2*l,l),t.beginPath(),t.arc(-l/2,0,l/2,0,2*Math.PI),t.fillStyle="#253f78",t.fill(),t.beginPath(),t.arc(l/2,0,l/2,0,2*Math.PI),t.fillStyle="#c83c4a",t.fill(),t.restore(),e.circle(f,c,2*l,{stroke:"#28332e",strokeWidth:1.1,fill:"transparent",roughness:2.1,bowing:1.1}),fc(i,.28,.27,-34,[!0,!0,!0]),fc(i,.72,.27,34,[!1,!0,!1]),fc(i,.28,.73,34,[!0,!1,!0]),fc(i,.72,.73,-34,[!1,!1,!1]),fo(i.x+14,i.y+22,i.width-36,i.height-50,"#cbd8ce"),h7(i)}function e5(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#249064","#176847"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#c83c4a","#8f2633"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.28,1/3,t),fu(.28,1/3,t)],[fg(.28,2/3,t),fu(.28,2/3,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#111615",strokeWidth:1.2,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function e6(){h9("#243f78","#1b2c56","#fbfdfa","#2f6fa4")}function e7(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#4f9fd3","#2c6f9b"),fh(t,.08,.08,.12,.92,"#f0c83a","#a98218"),e.circle(fg(.55,.42,t),fu(.55,.42,t),76,{stroke:"#b68b12",strokeWidth:1,fill:"#ffd84c",fillStyle:"hachure",hachureGap:8,fillWeight:.6,roughness:2.2,bowing:1.2}),e.line(fg(.42,.62,t),fu(.42,.62,t),fg(.68,.62,t),fu(.68,.62,t),{stroke:"#a98218",strokeWidth:5,roughness:2.2,bowing:1.6}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),h7(t)}function e9(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#273f78","#1b2c56"),fh(t,0,0,1,.25,"#c83c4a","#8f2633"),fh(t,0,.25,1,.75,"#273f78","#1b2c56"),fh(t,0,.75,1,1,"#c83c4a","#8f2633"),e.circle(fg(.5,.5,t),fu(.5,.5,t),.34*t.height,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#4f4e86"),h7(t)}function it(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.25,"#c83c4a","#8f2633"),fh(t,0,.75,1,1,"#c83c4a","#8f2633"),e.polygon([[fg(.5,.34,t),fu(.5,.34,t)],[fg(.6,.6,t),fu(.6,.6,t)],[fg(.53,.6,t),fu(.53,.6,t)],[fg(.53,.68,t),fu(.53,.68,t)],[fg(.47,.68,t),fu(.47,.68,t)],[fg(.47,.6,t),fu(.47,.6,t)],[fg(.4,.6,t),fu(.4,.6,t)]],{stroke:"#176847",strokeWidth:1.2,fill:"#249064",fillStyle:"solid",roughness:2.3,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function ie(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#4f9fd3","#2c6f9b"),e.polygon([[fg(.5,.2,t),fu(.5,.2,t)],[fg(.73,.78,t),fu(.73,.78,t)],[fg(.27,.78,t),fu(.27,.78,t)]],{stroke:"#111615",strokeWidth:1.2,fill:"#262d2b",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.polygon([[fg(.5,.29,t),fu(.5,.29,t)],[fg(.64,.74,t),fu(.64,.74,t)],[fg(.36,.74,t),fu(.36,.74,t)]],{stroke:"#a98218",strokeWidth:1.1,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),h7(t)}function ii(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#c83c4a","#8f2633"),fh(t,0,0,1,.5,"#253f78","#1b2c56"),fh(t,0,.5,1,1,"#c83c4a","#8f2633"),e.circle(fg(.18,.24,t),fu(.18,.24,t),34,{stroke:"#b68b12",strokeWidth:1,fill:"#ffd84c",fillStyle:"hachure",hachureGap:6,fillWeight:.8,roughness:2.2,bowing:1.2}),fh(t,.13,.29,.23,.34,"#ffd84c","#b68b12"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function ih(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,.08,.1,.22,.9,"#249064","#176847"),fh(t,.22,.1,.36,.9,"#ee8b2c","#a9601d"),fh(t,.4,.1,.92,.9,"#7b314b","#572439"),fs(fg(.66,.5,t),fu(.66,.5,t),42,-18,{stroke:"#b68b12",fill:"#ffd84c",hatch:"#ffec62"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#80623f"),h7(t)}function ic(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc");for(let e=0;e<11;e+=1)e%2==0&&fh(t,0,e/11,1,(e+1)/11,"#c83c4a","#8f2633");fh(t,0,0,.36,5/11,"#253f78","#1b2c56"),fs(fg(.18,.23,t),fu(.18,.23,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function il(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.3,"#253f78","#1b2c56"),fh(t,0,.3,1,.7,"#fbfdfa","#c7d1cc"),fh(t,0,.7,1,1,"#249064","#176847"),e.polygon([[fg(.5,.42,t),fu(.5,.42,t)],[fg(.6,.62,t),fu(.6,.62,t)],[fg(.4,.62,t),fu(.4,.62,t)]],{stroke:"#111615",strokeWidth:1.2,fill:"#262d2b",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.line(fg(.38,.63,t),fu(.38,.63,t),fg(.62,.63,t),fu(.62,.63,t),{stroke:"#262d2b",strokeWidth:4,roughness:2.2,bowing:1.5}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#4d5d86"),h7(t)}function io(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,0,0,1,1/3,"#f0c83a","#a98218"),fh(t,0,1/3,1,2/3,"#249064","#176847"),fh(t,0,2/3,1,1,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function ia(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#c83c4a","#8f2633"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#56a9d8","#35789d"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6d7082"),h7(t)}function is(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#8b2934","#63202a"),fh(t,0,0,1,.4,"#8b2934","#63202a"),fh(t,0,.4,1,.6,"#fbfdfa","#c7d1cc"),fh(t,0,.6,1,1,"#8b2934","#63202a"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#63202a"),h7(t)}function id(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#262d2b","#111615"),fh(t,0,0,1,.25,"#c83c4a","#8f2633"),fh(t,0,.25,1,.75,"#262d2b","#111615"),fh(t,0,.75,1,1,"#249064","#176847"),e.circle(fg(.48,.5,t),fu(.48,.5,t),.25*t.height,{stroke:"#c7d1cc",strokeWidth:1.1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fg(.53,.5,t),fu(.53,.5,t),.22*t.height,{stroke:"#111615",strokeWidth:1,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(fg(.6,.5,t),fu(.6,.5,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#111615"),h7(t)}function ir(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#c83c4a","#8f2633"),fs(fg(.5,.5,t),fu(.5,.5,t),54,-18,{stroke:"#176847",fill:"rgba(36, 144, 100, 0.16)",hatch:"#249064"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function ig(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.5,"#c83c4a","#8f2633"),fh(t,0,.5,1,1,"#fbfdfa","#c7d1cc"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function iu(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,0,0,1/3,1,"#253f78","#1b2c56"),fh(t,1/3,0,2/3,1,"#f0c83a","#a98218"),fh(t,2/3,0,1,1,"#c83c4a","#8f2633"),ff(t,.5,.5,"#fbfdfa","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#705b4a"),h7(t)}function ib(){let t=h8(),e=fl(t.x,t.y,t.width,t.height),i=fg(.5,.5,t),h=fu(.5,.5,t);h5(e),h6(e,"#c83c4a","#8f2633"),fh(t,0,0,1,.06,"#f0c83a","#a98218"),fh(t,0,.94,1,1,"#f0c83a","#a98218"),fh(t,0,0,.05,1,"#f0c83a","#a98218"),fh(t,.95,0,1,1,"#f0c83a","#a98218"),fa(i-28,h-16,24,-18),fa(i+28,h-16,24,12),ff(t,.5,.56,"#f0c83a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function iy(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1/3,1,"#2d4e8c","#1e3768"),fh(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fh(t,2/3,0,1,1,"#cf3d45","#912936"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6d7082"),h7(t)}function iw(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,.35,1,"#fbfdfa","#c7d1cc"),fh(t,.35,0,1,.5,"#c83c4a","#8f2633"),fh(t,.35,.5,1,1,"#249064","#176847"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#71634e"),h7(t)}function ik(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#253f78","#1b2c56"),fe(t,0,.94,1,.4,"#fbfdfa",34),fe(t,0,.98,1,.52,"#ee8b2c",24),fs(fg(.2,.24,t),fu(.2,.24,t),34,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function ix(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.5,.5,t),f=fu(.5,.5,t);h5(i),h6(i,"#c83c4a","#8f2633");for(let i=0;i<8;i+=1){let c=2*Math.PI*i/8;e.line(h,f,h+Math.cos(c)*t.width*.55,f+Math.sin(c)*t.height*.55,{stroke:"#f0c83a",strokeWidth:13,roughness:2.3,bowing:1.5})}e.circle(h,f,76,{stroke:"#a98218",strokeWidth:1.2,fill:"#ffd84c",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function ip(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,0,0,1/3,1,"#249064","#176847"),fh(t,1/3,0,2/3,1,"#f0c83a","#a98218"),fh(t,2/3,0,1,1,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function iW(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#249064","#176847"),fh(t,0,0,1,1/3,"#f0c83a","#a98218"),fh(t,0,1/3,1,2/3,"#249064","#176847"),fh(t,0,2/3,1,1,"#c83c4a","#8f2633"),fs(fg(.5,.5,t),fu(.5,.5,t),58,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function iM(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#253f78","#1b2c56"),fh(t,0,0,1/3,1,"#c83c4a","#8f2633"),fh(t,1/3,0,2/3,1,"#253f78","#1b2c56"),fh(t,2/3,0,1,1,"#c83c4a","#8f2633"),fh(t,.12,.22,.2,.78,"#ffd84c","#b68b12"),e.circle(fg(.16,.5,t),fu(.16,.5,t),38,{stroke:"#b68b12",strokeWidth:1,fill:"transparent",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function iS(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.5,.52,t),f=fu(.5,.52,t);h5(i),h6(i,"#176847","#0f4f37");for(let t=0;t<5;t+=1)e.circle(h+(t-2)*22,f,34,{stroke:"#c7d1cc",strokeWidth:.9,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2});[[.5,.22,14],[.43,.32,9],[.57,.32,9],[.38,.43,8],[.62,.43,8]].forEach(([e,i,h],f)=>fa(fg(e,i,t),fu(e,i,t),h,-18+4*f)),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),h7(t)}function im(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#253f78","#1b2c56"),e.circle(fg(.5,.52,t),fu(.5,.52,t),86,{stroke:"#c7d1cc",strokeWidth:1,fill:"rgba(251, 253, 250, 0.14)",fillStyle:"hachure",hachureGap:10,fillWeight:.5,roughness:2.3,bowing:1.2}),fs(fg(.5,.5,t),fu(.5,.5,t),32,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function iP(){tf()}function iv(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#176847","#0f4f37"),fh(t,0,0,1,.18,"#c83c4a","#8f2633"),fh(t,0,.82,1,1,"#c83c4a","#8f2633"),e.circle(fg(.5,.47,t),fu(.5,.47,t),.32*t.height,{stroke:"#b68b12",strokeWidth:1.2,fill:"transparent",roughness:2.2,bowing:1.2}),e.circle(fg(.5,.41,t),fu(.5,.41,t),.3*t.height,{stroke:"#0f4f37",strokeWidth:1,fill:"#176847",fillStyle:"solid",roughness:2.2,bowing:1.2}),fa(fg(.5,.38,t),fu(.5,.38,t),25,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),h7(t)}function iG(){h9("#243f78","#1b2c56","#fbfdfa","#249064")}function iI(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,.5,1,"#fbfdfa","#c7d1cc"),fh(t,.5,0,1,1,"#c83c4a","#8f2633"),fh(t,.11,.16,.17,.31,"#c7d1cc","#8f9b96"),fh(t,.07,.2,.21,.27,"#c7d1cc","#8f9b96"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function iO(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#249064","#176847"),fh(t,0,0,1,.25,"#c83c4a","#8f2633"),fh(t,0,.25,1,.5,"#253f78","#1b2c56"),fh(t,0,.5,1,.75,"#f0c83a","#a98218"),fh(t,0,.75,1,1,"#249064","#176847"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#705b4a"),h7(t)}function iE(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#c83c4a","#8f2633"),fh(t,.18,.22,.82,.78,"#176847","#0f4f37"),e.circle(fg(.53,.5,t),fu(.53,.5,t),.27*t.height,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fg(.58,.5,t),fu(.58,.5,t),.24*t.height,{stroke:"#0f4f37",strokeWidth:1,fill:"#176847",fillStyle:"solid",roughness:2.3,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function iL(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#c83c4a","#8f2633"),fh(t,0,0,1,1/3,"#262d2b","#111615"),fh(t,0,1/3,1,2/3,"#c83c4a","#8f2633"),fh(t,0,2/3,1,1,"#249064","#176847"),e.circle(fg(.5,.19,t),fu(.5,.19,t),56,{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"hachure",hachureGap:8,fillWeight:.7,roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function iC(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1/3,1,"#176847","#0f4f37"),fh(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fh(t,2/3,0,1,1,"#c83c4a","#8f2633"),e.circle(fg(.5,.5,t),fu(.5,.5,t),58,{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"hachure",hachureGap:8,fillWeight:.45,roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function iT(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc");for(let e=0;e<14;e+=1)e%2==0&&fh(t,0,e/14,1,(e+1)/14,"#c83c4a","#8f2633");fh(t,0,0,.48,.55,"#253f78","#1b2c56"),e.circle(fg(.22,.28,t),fu(.22,.28,t),54,{stroke:"#b68b12",strokeWidth:1,fill:"#ffd84c",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fg(.26,.28,t),fu(.26,.28,t),48,{stroke:"#1b2c56",strokeWidth:1,fill:"#253f78",fillStyle:"solid",roughness:2.2,bowing:1.2}),fa(fg(.34,.28,t),fu(.34,.28,t),20,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function i$(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.3,"#249064","#176847"),fh(t,0,.35,1,.65,"#262d2b","#111615"),fh(t,0,.7,1,1,"#f0c83a","#a98218"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.42,.5,t),fu(.42,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fa(fg(.16,.5,t),fu(.16,.5,t),22,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function i_(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#253f78","#1b2c56"),e.polygon([[fg(1,0,t),fu(1,0,t)],[fg(0,1,t),fu(0,1,t)],[fg(1,1,t),fu(1,1,t)]],{stroke:"#176847",strokeWidth:1,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),fe(t,0,1,1,0,"#fbfdfa",38),fe(t,0,1,1,0,"#c83c4a",22),e.circle(fg(.2,.22,t),fu(.2,.22,t),48,{stroke:"#b68b12",strokeWidth:1,fill:"#ffd84c",fillStyle:"hachure",hachureGap:7,fillWeight:.7,roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function iR(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.24,.5,t),f=fu(.24,.5,t);h5(i),h6(i,"#c83c4a","#8f2633"),fh(t,0,0,1,1/3,"#253f78","#1b2c56"),fh(t,0,1/3,1,2/3,"#c83c4a","#8f2633"),fh(t,0,2/3,1,1,"#249064","#176847"),e.circle(h,f,86,{stroke:"#111615",strokeWidth:2,fill:"#f0c83a",fillStyle:"hachure",hachureGap:8,fillWeight:.6,roughness:2.3,bowing:1.2}),e.line(h,f-34,h,f+36,{stroke:"#111615",strokeWidth:4,roughness:2.3,bowing:1.6}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b3538"),h7(t)}function iz(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#ee8b2c","#a9601d"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#249064","#176847"),e.circle(fg(.5,.5,t),fu(.5,.5,t),42,{stroke:"#a9601d",strokeWidth:1,fill:"#ee8b2c",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#756b4d"),h7(t)}function iD(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.5,.5,t),f=fu(.5,.5,t);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1/3,1,"#176847","#0f4f37"),fh(t,2/3,0,1,1,"#176847","#0f4f37"),[0,1,2].forEach(t=>{e.polygon([[h,f-76+34*t],[h-48+8*t,f-26+28*t],[h+48-8*t,f-26+28*t]],{stroke:"#0f4f37",strokeWidth:1,fill:"#176847",fillStyle:"solid",roughness:2.2,bowing:1.2})}),e.line(h,f-24,h,f+78,{stroke:"#6f4f28",strokeWidth:4,roughness:2.3,bowing:1.6}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),h7(t)}function iA(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1/3,1,"#249064","#176847"),fh(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fh(t,2/3,0,1,1,"#249064","#176847"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),h7(t)}function iX(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#2f78bd","#20588e"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#2f78bd","#20588e"),ff(t,.5,.5,"#f0c83a","#2f78bd"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3d6e98"),h7(t)}function iY(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#b63842","#7d2530"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#2f4f9d","#203a74"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#634b67"),h7(t)}function ij(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#c83c4a","#8f2633"),fh(t,.28,0,.46,1,"#fbfdfa","#c7d1cc"),fh(t,0,.36,1,.58,"#fbfdfa","#c7d1cc"),fh(t,.33,0,.41,1,"#253f78","#1b2c56"),fh(t,0,.43,1,.51,"#253f78","#1b2c56"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function iq(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),e.polygon([[fg(.26,.08,t),fu(.26,.08,t)],[fg(.72,.38,t),fu(.72,.38,t)],[fg(.38,.42,t),fu(.38,.42,t)],[fg(.74,.86,t),fu(.74,.86,t)],[fg(.26,.86,t),fu(.26,.86,t)]],{stroke:"#203a74",strokeWidth:10,fill:"#c83c4a",fillStyle:"solid",roughness:2.4,bowing:1.4}),fs(fg(.42,.32,t),fu(.42,.32,t),20,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),e.circle(fg(.44,.68,t),fu(.44,.68,t),36,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2})}function iF(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#253f78","#1b2c56"),fh(t,0,.52,1,.58,"#f0c83a","#a98218"),fs(fg(.28,.72,t),fu(.28,.72,t),24,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function iV(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),ft(t),[[.72,.3],[.84,.46],[.68,.62],[.82,.75]].forEach(([e,i],h)=>fs(fg(e,i,t),fu(e,i,t),0===h?16:10,-18+5*h,{stroke:"#203a74",fill:"#253f78",hatch:"rgba(37, 63, 120, 0.6)"})),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function iZ(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#243f78","#1b2c56"),ft(t),[[.72,.28,14],[.84,.44,12],[.68,.58,14],[.8,.72,9]].forEach(([e,i,h],f)=>fs(fg(e,i,t),fu(e,i,t),h,-18+5*f,{stroke:"#fbfdfa",fill:"#c83c4a",hatch:"rgba(251, 253, 250, 0.5)"})),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function iQ(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,.25,1,"#c83c4a","#8f2633"),fh(t,.25,0,1,1/3,"#fbfdfa","#c7d1cc"),fh(t,.25,1/3,1,2/3,"#c83c4a","#8f2633"),fh(t,.25,2/3,1,1,"#249064","#176847"),ff(t,.125,.2,"#fbfdfa","#c7d1cc"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function iH(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,.5,.5,"#fbfdfa","#c7d1cc"),fh(t,.5,0,1,.5,"#c83c4a","#8f2633"),fh(t,0,.5,.5,1,"#2f4f9d","#203a74"),fh(t,.5,.5,1,1,"#fbfdfa","#c7d1cc"),fs(fg(.25,.25,t),fu(.25,.25,t),22,-18,{stroke:"#203a74",fill:"#2f4f9d",hatch:"#4770bd"}),fs(fg(.75,.75,t),fu(.75,.75,t),22,-18,{stroke:"#8f2633",fill:"#c83c4a",hatch:"#d8585f"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function iN(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1/3,1,"#c83c4a","#8f2633"),fh(t,1/3,0,2/3,1,"#fbfdfa","#c7d1cc"),fh(t,2/3,0,1,1,"#c83c4a","#8f2633"),ff(t,.5,.5,"#f0c83a","#249064"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function iB(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.25,"#c83c4a","#8f2633"),fh(t,0,.75,1,1,"#c83c4a","#8f2633"),e.circle(fg(.5,.5,t),fu(.5,.5,t),92,{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"hachure",hachureGap:8,fillWeight:.5,roughness:2.2,bowing:1.2}),e.line(fg(.42,.54,t),fu(.42,.54,t),fg(.58,.54,t),fu(.58,.54,t),{stroke:"#c83c4a",strokeWidth:4,roughness:2.3,bowing:1.5}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function iU(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#262d2b","#111615"),e.polygon([[fg(1,0,t),fu(1,0,t)],[fg(1,1,t),fu(1,1,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fa(fg(.28,.3,t),fu(.28,.3,t),14,-18),fa(fg(.4,.45,t),fu(.4,.45,t),10,-12),e.line(fg(.62,.3,t),fu(.62,.3,t),fg(.82,.42,t),fu(.82,.42,t),{stroke:"#f0c83a",strokeWidth:5,roughness:2.4,bowing:1.8}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function iJ(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.5,"#253f78","#1b2c56"),fh(t,0,.5,1,1,"#c83c4a","#8f2633"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.42,.5,t),fu(.42,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fg(.17,.5,t),fu(.17,.5,t),34,{stroke:"#b68b12",strokeWidth:1,fill:"#ffd84c",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function iK(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#176847","#0f4f37"),fh(t,0,0,.25,1,"#fbfdfa","#c7d1cc"),e.circle(fg(.58,.47,t),fu(.58,.47,t),.35*t.height,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fg(.64,.45,t),fu(.64,.45,t),.31*t.height,{stroke:"#0f4f37",strokeWidth:1,fill:"#176847",fillStyle:"solid",roughness:2.3,bowing:1.2}),fs(fg(.68,.34,t),fu(.68,.34,t),24,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),h7(t)}function i2(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.5,"#fbfdfa","#c7d1cc"),fh(t,0,.5,1,1,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function i1(){tf()}function i3(){h9("#243f78","#1b2c56","#fbfdfa","#249064")}function i0(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc");for(let e=0;e<5;e+=1)e%2==0&&fh(t,0,e/5,1,(e+1)/5,"#c83c4a","#8f2633");e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.42,.5,t),fu(.42,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#203a74",strokeWidth:1.2,fill:"#253f78",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(fg(.16,.5,t),fu(.16,.5,t),20,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function i4(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#262d2b","#111615"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#249064","#176847"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.38,.5,t),fu(.38,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function i8(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#c83c4a","#8f2633"),fh(t,0,0,.4,1,"#176847","#0f4f37"),fh(t,.4,0,1,1,"#c83c4a","#8f2633"),e.circle(fg(.4,.5,t),fu(.4,.5,t),72,{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"hachure",hachureGap:8,fillWeight:.5,roughness:2.2,bowing:1.2}),ff(t,.4,.5,"#fbfdfa","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function i5(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#4f9fd3","#2c6f9b"),e.circle(fg(.43,.5,t),fu(.43,.5,t),118,{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"hachure",hachureGap:9,fillWeight:.6,roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),h7(t)}function i6(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#c83c4a","#8f2633"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#253f78","#1b2c56"),ff(t,.5,.5,"#f0c83a","#249064"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function i7(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=[[fg(.25,0,t),fu(.25,0,t)]];for(let e=0;e<9;e+=1)h.push([fg(.36,(e+.5)/9,t),fu(.36,(e+.5)/9,t)]),h.push([fg(.25,(e+1)/9,t),fu(.25,(e+1)/9,t)]);h5(i),h6(i,"#7b314b","#572439"),e.polygon([[fg(0,0,t),fu(0,0,t)],...h,[fg(0,1,t),fu(0,1,t)]],{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#572439"),h7(t)}function i9(){tf()}function ht(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,0,0,1/3,1,"#2f4f9d","#203a74"),fh(t,1/3,0,2/3,1,"#f0c83a","#a98218"),fh(t,2/3,0,1,1,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#705c4d"),h7(t)}function he(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#c83c4a","#8f2633"),fh(t,0,1/3,1,2/3,"#253f78","#1b2c56"),fh(t,0,2/3,1,1,"#fbfdfa","#c7d1cc"),ff(t,.32,.5,"#fbfdfa","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function hi(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#fbfdfa","#c7d1cc"),fh(t,0,1/3,1,2/3,"#2f4f9d","#203a74"),fh(t,0,2/3,1,1,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function hh(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#4f9fd3","#2c6f9b"),fh(t,0,0,1,.5,"#4f9fd3","#2c6f9b"),fh(t,0,.5,1,.75,"#f0c83a","#a98218"),fh(t,0,.75,1,1,"#249064","#176847"),fa(fg(.82,.24,t),fu(.82,.24,t),28,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#477aa5"),h7(t)}function hf(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#176847","#0f4f37"),e.line(fg(.28,.42,t),fu(.28,.42,t),fg(.72,.42,t),fu(.72,.42,t),{stroke:"#fbfdfa",strokeWidth:5,roughness:2.4,bowing:1.6}),e.line(fg(.34,.6,t),fu(.34,.6,t),fg(.68,.56,t),fu(.68,.56,t),{stroke:"#fbfdfa",strokeWidth:4,roughness:2.4,bowing:1.8}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),h7(t)}function hc(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#2f78bd","#20588e"),e.polygon([[fg(0,1,t),fu(0,1,t)],[fg(1,0,t),fu(1,0,t)],[fg(1,1,t),fu(1,1,t)]],{stroke:"#176847",strokeWidth:1,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),fe(t,0,1,1,0,"#f0c83a",32),[[.18,.18],[.28,.18],[.23,.28],[.15,.34],[.31,.34]].forEach(([e,i],h)=>fa(fg(e,i,t),fu(e,i,t),8,-18+h)),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3d6e98"),h7(t)}function hl(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=[fg(0,1,t),fu(0,1,t)];h5(i),h6(i,"#253f78","#1b2c56"),[["#253f78",0,.18,"#1b2c56"],["#f0c83a",.18,.38,"#a98218"],["#c83c4a",.38,.58,"#8f2633"],["#fbfdfa",.58,.78,"#c7d1cc"],["#249064",.78,1,"#176847"]].forEach(([i,f,c,l])=>{e.polygon([h,[fg(f,0,t),fu(f,0,t)],[fg(c,0,t),fu(c,0,t)]],{stroke:l,strokeWidth:1,fill:i,fillStyle:"solid",roughness:2.2,bowing:1.2})}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function ho(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#c83c4a","#8f2633"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#262d2b","#111615"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.36,.5,t),fu(.36,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#176847",strokeWidth:1.2,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function ha(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#2f78bd","#20588e"),fh(t,.28,0,.42,1,"#f0c83a","#a98218"),fh(t,0,.4,1,.56,"#f0c83a","#a98218"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3d6e98"),h7(t)}function hs(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.5,"#c83c4a","#8f2633"),fh(t,0,.5,1,1,"#fbfdfa","#c7d1cc"),e.circle(fg(.22,.25,t),fu(.22,.25,t),.24*t.height,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fg(.26,.25,t),fu(.26,.25,t),.2*t.height,{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),[[.34,.15],[.39,.21],[.38,.31],[.3,.35],[.28,.23]].forEach(([e,i],h)=>{fs(fg(e,i,t),fu(e,i,t),8,-18+5*h,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"})}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function hn(){h9("#243f78","#1b2c56","#fbfdfa","#f0c83a")}function hd(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#fbfdfa","#c7d1cc"),fh(t,0,1/3,1,2/3,"#253f78","#1b2c56"),fh(t,0,2/3,1,1,"#c83c4a","#8f2633"),ff(t,.28,.38,"#fbfdfa","#253f78"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function hr(){ij()}function hg(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#fbfdfa","#c7d1cc"),fh(t,0,1/3,1,2/3,"#253f78","#1b2c56"),fh(t,0,2/3,1,1,"#c83c4a","#8f2633"),ff(t,.28,.5,"#fbfdfa","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function hu(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#249064","#176847"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#4f9fd3","#2c6f9b"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),h7(t)}function hb(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.5,"#fbfdfa","#c7d1cc"),fh(t,0,.5,1,1,"#75a9d8","#477aa5"),ff(t,.5,.5,"#f0c83a","#249064"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#477aa5"),h7(t)}function hy(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,0,0,1/3,1,"#249064","#176847"),fh(t,1/3,0,2/3,1,"#f0c83a","#a98218"),fh(t,2/3,0,1,1,"#c83c4a","#8f2633"),fs(fg(.5,.5,t),fu(.5,.5,t),30,-18,{stroke:"#176847",fill:"#249064",hatch:"#38a975"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function hw(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#4f9fd3","#2c6f9b"),fs(fg(.5,.5,t),fu(.5,.5,t),44,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#2c6f9b"),h7(t)}function hk(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#249064","#176847"),fh(t,0,0,1,.2,"#249064","#176847"),fh(t,0,.2,1,.3,"#fbfdfa","#c7d1cc"),fh(t,0,.3,1,.7,"#c83c4a","#8f2633"),fh(t,0,.7,1,.8,"#fbfdfa","#c7d1cc"),fh(t,0,.8,1,1,"#249064","#176847"),fa(fg(.5,.5,t),fu(.5,.5,t),34,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function hx(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.3,"#262d2b","#111615"),fh(t,0,.36,1,.64,"#c83c4a","#8f2633"),fh(t,0,.7,1,1,"#249064","#176847"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.42,.5,t),fu(.42,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#203a74",strokeWidth:1.2,fill:"#253f78",fillStyle:"solid",roughness:2.2,bowing:1.2}),fa(fg(.16,.5,t),fu(.16,.5,t),22,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function hp(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#f0c83a","#a98218"),fh(t,0,0,1,.25,"#249064","#176847"),fh(t,0,.75,1,1,"#249064","#176847"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.34,.5,t),fu(.34,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(fg(.48,.5,t),fu(.48,.5,t),18,-18,{stroke:"#111615",fill:"#262d2b",hatch:"rgba(38, 45, 43, 0.7)"}),fs(fg(.64,.5,t),fu(.64,.5,t),18,-18,{stroke:"#111615",fill:"#262d2b",hatch:"rgba(38, 45, 43, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function hW(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#253f78","#1b2c56"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#253f78","#1b2c56"),ff(t,.5,.5,"#f0c83a","#249064"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#4d5d86"),h7(t)}function hM(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#253f78","#1b2c56"),fh(t,0,0,1,.5,"#c83c4a","#8f2633"),fh(t,0,.5,1,1,"#253f78","#1b2c56"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.46,.5,t),fu(.46,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),ff(t,.16,.5,"#f0c83a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function hS(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#c83c4a","#8f2633"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#262d2b","#111615"),fs(fg(.42,.5,t),fu(.42,.5,t),20,-18,{stroke:"#176847",fill:"#249064",hatch:"#38a975"}),fs(fg(.58,.5,t),fu(.58,.5,t),20,-18,{stroke:"#176847",fill:"#249064",hatch:"#38a975"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function hm(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#c83c4a","#8f2633"),fh(t,0,0,1,.18,"#253f78","#1b2c56"),fh(t,0,.18,1,.26,"#f0c83a","#a98218"),fh(t,0,.74,1,.82,"#f0c83a","#a98218"),fh(t,0,.82,1,1,"#253f78","#1b2c56"),ff(t,.5,.5,"#fbfdfa","#262d2b"),e.line(fg(.32,.5,t),fu(.32,.5,t),fg(.68,.5,t),fu(.68,.5,t),{stroke:"#6f4f28",strokeWidth:3,roughness:2.3,bowing:1.5}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function hP(){h9("#243f78","#1b2c56","#f0c83a","#249064")}function hv(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,0,0,1/3,1,"#253f78","#1b2c56"),fh(t,1/3,0,2/3,1,"#f0c83a","#a98218"),fh(t,2/3,0,1,1,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#705b4a"),h7(t)}function hG(){tf()}function hI(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#249064","#176847");for(let e=0;e<5;e+=1)fh(t,0,e/5,1,(e+1)/5,e%2==0?"#249064":"#f0c83a",e%2==0?"#176847":"#a98218");fh(t,0,0,.38,.6,"#c83c4a","#8f2633"),fs(fg(.19,.3,t),fu(.19,.3,t),20,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function hO(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.28,"#c83c4a","#8f2633"),fh(t,0,.28,1,.72,"#fbfdfa","#c7d1cc"),fh(t,0,.72,1,1,"#249064","#176847"),e.circle(fg(.5,.5,t),fu(.5,.5,t),42,{stroke:"#a98218",strokeWidth:1,fill:"#f0c83a",fillStyle:"hachure",hachureGap:7,fillWeight:.6,roughness:2.2,bowing:1.2}),fa(fg(.5,.42,t),fu(.5,.42,t),12,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function hE(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#253f78","#1b2c56"),e.circle(fg(.24,.34,t),fu(.24,.34,t),64,{stroke:"#a98218",strokeWidth:1,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fg(.28,.34,t),fu(.28,.34,t),58,{stroke:"#1b2c56",strokeWidth:1,fill:"#253f78",fillStyle:"solid",roughness:2.2,bowing:1.2}),[[.68,.34],[.82,.48],[.66,.64],[.78,.76]].forEach(([e,i],h)=>fa(fg(e,i,t),fu(e,i,t),0===h?12:9,-18+h)),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function hL(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#c83c4a","#8f2633"),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.62,.5,t),fu(.62,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.42,.5,t),fu(.42,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#111615",strokeWidth:1.2,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(fg(.16,.5,t),fu(.16,.5,t),18,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function hC(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#176847","#0f4f37"),fh(t,.12,.08,.22,.92,"#8b2934","#63202a");for(let i=0;i<5;i+=1)e.line(fg(.13,.14+.15*i,t),fu(.13,.14+.15*i,t),fg(.21,.18+.15*i,t),fu(.21,.18+.15*i,t),{stroke:"#f0c83a",strokeWidth:1.4,roughness:2.1,bowing:1.4});e.circle(fg(.42,.36,t),fu(.42,.36,t),54,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fg(.46,.36,t),fu(.46,.36,t),48,{stroke:"#0f4f37",strokeWidth:1,fill:"#176847",fillStyle:"solid",roughness:2.2,bowing:1.2}),fa(fg(.58,.34,t),fu(.58,.34,t),11,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),h7(t)}function hT(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#c83c4a","#8f2633"),e.circle(fg(.5,.5,t),fu(.5,.5,t),.44*t.height,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fg(.48,.5,t),fu(.48,.5,t),.25*t.height,{stroke:"#8f2633",strokeWidth:1.2,fill:"#c83c4a",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fg(.53,.5,t),fu(.53,.5,t),.21*t.height,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),fs(fg(.58,.5,t),fu(.58,.5,t),20,-18,{stroke:"#8f2633",fill:"#c83c4a",hatch:"#d8585f"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function h$(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#c83c4a","#8f2633"),fh(t,0,0,.42,.46,"#fbfdfa","#c7d1cc"),fh(t,.16,.08,.26,.38,"#c83c4a","#8f2633"),fh(t,.08,.18,.34,.28,"#c83c4a","#8f2633"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function h_(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#c83c4a","#8f2633"),e.circle(fg(.42,.5,t),fu(.42,.5,t),.36*t.height,{stroke:"#c7d1cc",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.3,bowing:1.2}),e.circle(fg(.47,.5,t),fu(.47,.5,t),.29*t.height,{stroke:"#8f2633",strokeWidth:1,fill:"#c83c4a",fillStyle:"solid",roughness:2.3,bowing:1.2}),fs(fg(.59,.5,t),fu(.59,.5,t),26,-18,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251, 253, 250, 0.7)"}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function hR(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#c83c4a","#8f2633"),fe(t,0,0,1,1,"#fbfdfa",48),fe(t,0,0,1,1,"#262d2b",28),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function hz(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#75a9d8","#477aa5"),ft(t),[[.7,.28],[.84,.42],[.74,.58],[.88,.7],[.62,.74]].forEach(([e,i],h)=>fa(fg(e,i,t),fu(e,i,t),9,-18+h)),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#477aa5"),h7(t)}function hD(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#249064","#176847"),e.polygon([[fg(1,0,t),fu(1,0,t)],[fg(1,1,t),fu(1,1,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#2c6f9b",strokeWidth:1,fill:"#4f9fd3",fillStyle:"solid",roughness:2.2,bowing:1.2}),fe(t,0,1,1,0,"#f0c83a",46),fe(t,0,1,1,0,"#262d2b",28),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3f755c"),h7(t)}function hA(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,0,0,1,.5,"#3d78bd","#284f84"),fh(t,0,.5,1,1,"#f0c83a","#a98218"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#5d7653"),h7(t)}function hX(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#262d2b","#111615"),["#262d2b","#f0c83a","#c83c4a","#262d2b","#f0c83a","#c83c4a"].forEach((e,i)=>{fh(t,0,i/6,1,(i+1)/6,e,"#262d2b"===e?"#111615":"#f0c83a"===e?"#a98218":"#8f2633")}),e.circle(fg(.5,.5,t),fu(.5,.5,t),76,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.line(fg(.48,.42,t),fu(.48,.42,t),fg(.56,.58,t),fu(.56,.58,t),{stroke:"#262d2b",strokeWidth:4,roughness:2.3,bowing:1.5}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#705b4a"),h7(t)}function hY(){var t;let i,h,f,c,l,o,a,s,n=h8(),d=fl(n.x,n.y,n.width,n.height);h5(d),h6(d,"#5b9bd5","#3a76a8"),i=fg(.5,.52,t=n),h=fu(.52,.52,t),c=(f=.22*t.width)/2,l="#fbfdfa",o={stroke:"#e3eff8",strokeWidth:1,roughness:2.1,bowing:1.3},e.circle(i,h,f,{stroke:l,strokeWidth:1.2,fill:l,fillStyle:"solid",roughness:2.1,bowing:1.2}),e.line(i,h-c,i,h+c,o),e.line(i-c,h,i+c,h,o),e.line(i-.72*c,h-.38*c,i+.72*c,h+.38*c,o),e.line(i-.72*c,h+.38*c,i+.72*c,h-.38*c,o),a=1.48*c,fi(i,h+(s=.1*c),a,5*Math.PI/6,Math.PI/2,l),fi(i,h+s,a,Math.PI/6,Math.PI/2,l),fo(n.x+14,n.y+22,n.width-36,n.height-50,"#3d7aad"),h7(n)}function hj(){te()}function hq(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc");for(let e=1;e<9;e+=2)fh(t,0,e/9,1,(e+1)/9,"#2f78bd","#20588e");fh(t,0,0,.34,5/9,"#fbfdfa","#c7d1cc"),e.circle(fg(.17,.27,t),fu(.17,.27,t),40,{stroke:"#b68b12",strokeWidth:1.2,fill:"#ffd84c",fillStyle:"hachure",hachureGap:7,fillWeight:.8,roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#3d6e98"),h7(t)}function hF(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,.32,"#4f9fd3","#2c6f9b"),fh(t,0,.35,1,.65,"#fbfdfa","#c7d1cc"),fh(t,0,.68,1,1,"#249064","#176847"),fh(t,0,.32,1,.35,"#c83c4a","#8f2633"),fh(t,0,.65,1,.68,"#c83c4a","#8f2633"),e.circle(fg(.22,.16,t),fu(.22,.16,t),36,{stroke:"#c7d1cc",strokeWidth:1,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),e.circle(fg(.25,.16,t),fu(.25,.16,t),32,{stroke:"#2c6f9b",strokeWidth:1,fill:"#4f9fd3",fillStyle:"solid",roughness:2.2,bowing:1.2}),fa(fg(.36,.14,t),fu(.36,.14,t),8,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#477aa5"),h7(t)}function hV(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#f0c83a","#a98218"),fh(t,0,0,.25,1,"#2f78bd","#20588e"),fh(t,.25,0,.75,1,"#f0c83a","#a98218"),fh(t,.75,0,1,1,"#249064","#176847"),[[.45,.48],[.55,.48],[.5,.6]].forEach(([i,h])=>{e.polygon([[fg(i,h-.06,t),fu(i,h-.06,t)],[fg(i+.04,h,t),fu(i+.04,h,t)],[fg(i,h+.06,t),fu(i,h+.06,t)],[fg(i-.04,h,t),fu(i-.04,h,t)]],{stroke:"#176847",strokeWidth:1,fill:"#249064",fillStyle:"solid",roughness:2.2,bowing:1.2})}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function hZ(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#f0c83a","#a98218"),fh(t,0,0,1,1/3,"#f0c83a","#a98218"),fh(t,0,1/3,1,2/3,"#253f78","#1b2c56"),fh(t,0,2/3,1,1,"#c83c4a","#8f2633");for(let e=0;e<8;e+=1){let i=Math.PI*(.95+.1*e);fs(fg(.5+.22*Math.cos(i),.5,t),fu(.5+.22*Math.cos(i),.5+.18*Math.sin(i),t),8,-18+e,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251,253,250,0.7)"})}fo(t.x+14,t.y+22,t.width-36,t.height-50,"#705b4a"),h7(t)}function hQ(){h9("#243f78","#1b2c56","#fbfdfa","#249064")}function hH(){let t=h8(),i=fl(t.x,t.y,t.width,t.height),h=fg(.5,.48,t),f=fu(.5,.48,t);h5(i),h6(i,"#fbfdfa","#c7d1cc"),fa(h,f-20,26,-18),e.line(h-70,f+50,h-32,f+10,{stroke:"#2f4f9d",strokeWidth:4,roughness:2.3,bowing:1.5}),e.line(h+70,f+50,h+32,f+10,{stroke:"#249064",strokeWidth:4,roughness:2.3,bowing:1.5}),e.line(h-28,f+28,h+28,f+28,{stroke:"#f0c83a",strokeWidth:5,roughness:2.3,bowing:1.5}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#cbd8ce"),h7(t)}function hN(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#c83c4a","#8f2633"),fa(fg(.5,.5,t),fu(.5,.5,t),54,-18),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function hB(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#c83c4a","#8f2633"),fh(t,0,.5,1,1,"#249064","#176847"),fe(t,0,.5,1,.5,"#f0c83a",34),fe(t,0,.5,1,.18,"#f0c83a",28),fe(t,0,.5,1,.82,"#f0c83a",28),fe(t,0,.5,1,.5,"#262d2b",18),fe(t,0,.5,1,.18,"#262d2b",14),fe(t,0,.5,1,.82,"#262d2b",14),e.circle(fg(.16,.5,t),fu(.16,.5,t),46,{stroke:"#f0c83a",strokeWidth:2,fill:"transparent",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function hU(){tf()}function hJ(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#c83c4a","#8f2633"),fh(t,0,0,.48,.55,"#253f78","#1b2c56"),[[.2,.18,11],[.34,.27,9],[.24,.39,11],[.38,.44,8]].forEach(([e,i,h],f)=>fs(fg(e,i,t),fu(e,i,t),h,-18+f,{stroke:"#c7d1cc",fill:"#fbfdfa",hatch:"rgba(251,253,250,0.7)"})),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#8f2633"),h7(t)}function hK(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#253f78","#1b2c56"),e.polygon([[fg(.42,.48,t),fu(.42,.48,t)],[fg(.58,.42,t),fu(.58,.42,t)],[fg(.66,.62,t),fu(.66,.62,t)],[fg(.48,.72,t),fu(.48,.72,t)]],{stroke:"#a98218",strokeWidth:1.2,fill:"#f0c83a",fillStyle:"hachure",hachureGap:8,fillWeight:.6,roughness:2.2,bowing:1.2});for(let e=0;e<6;e+=1)fa(fg(.34+.065*e,.3,t),fu(.34+.065*e,.3,t),8,-18+e);fo(t.x+14,t.y+22,t.width-36,t.height-50,"#1b2c56"),h7(t)}function h2(){let t=h8(),e=fl(t.x,t.y,t.width,t.height);h5(e),h6(e,"#fbfdfa","#c7d1cc"),fh(t,0,0,1,1/3,"#c83c4a","#8f2633"),fh(t,0,1/3,1,2/3,"#fbfdfa","#c7d1cc"),fh(t,0,2/3,1,1,"#262d2b","#111615"),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6f353c"),h7(t)}function h1(){tf()}function h3(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#c83c4a","#8f2633"),fh(t,0,.5,1,1,"#253f78","#1b2c56"),fe(t,0,.5,1,.5,"#fbfdfa",58),fe(t,0,.5,1,.22,"#fbfdfa",48),fe(t,0,.5,1,.78,"#fbfdfa",48),fe(t,0,.5,1,.5,"#f0c83a",40),fe(t,0,.5,1,.22,"#249064",30),fe(t,0,.5,1,.78,"#249064",30),e.polygon([[fg(0,.1,t),fu(0,.1,t)],[fg(.32,.5,t),fu(.32,.5,t)],[fg(0,.9,t),fu(0,.9,t)]],{stroke:"#111615",strokeWidth:1.2,fill:"#262d2b",fillStyle:"solid",roughness:2.2,bowing:1.2}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#6b4e74"),h7(t)}function h0(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#176847","#0f4f37"),fh(t,.72,.55,.8,1,"#c83c4a","#8f2633"),fh(t,.8,.55,.88,1,"#262d2b","#111615"),fh(t,.88,.55,.96,1,"#ee8b2c","#a9601d"),e.line(fg(.76,.32,t),fu(.76,.32,t),fg(.92,.28,t),fu(.92,.28,t),{stroke:"#ee8b2c",strokeWidth:5,roughness:2.4,bowing:1.8}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#0f4f37"),h7(t)}function h4(){let t=h8(),i=fl(t.x,t.y,t.width,t.height);h5(i),h6(i,"#262d2b","#111615"),["#249064","#f0c83a","#c83c4a","#262d2b","#c83c4a","#f0c83a","#249064"].forEach((e,i)=>fh(t,0,i/7,1,(i+1)/7,e,"#262d2b"===e?"#111615":fy(e,.75))),e.polygon([[fg(0,0,t),fu(0,0,t)],[fg(.42,.5,t),fu(.42,.5,t)],[fg(0,1,t),fu(0,1,t)]],{stroke:"#111615",strokeWidth:1.2,fill:"#fbfdfa",fillStyle:"solid",roughness:2.2,bowing:1.2}),fs(fg(.16,.5,t),fu(.16,.5,t),28,-18,{stroke:"#8f2633",fill:"#c83c4a",hatch:"#d8585f"}),e.line(fg(.16,.47,t),fu(.16,.47,t),fg(.26,.53,t),fu(.26,.53,t),{stroke:"#f0c83a",strokeWidth:4,roughness:2.3,bowing:1.5}),fo(t.x+14,t.y+22,t.width-36,t.height-50,"#70623c"),h7(t)}function h8(){return{x:118,y:174,width:486,height:342}}function h5(t){e.polygon(fb(t,8,10),{stroke:"transparent",fill:c,fillStyle:"solid",roughness:2.2,bowing:1.2})}function h6(t,i,h){e.polygon(t,{stroke:h,strokeWidth:2.4,fill:i,fillStyle:"solid",roughness:2.4,bowing:1.4})}function h7(t){e.polygon(fl(t.x,t.y,t.width,t.height),{stroke:"#28332e",strokeWidth:2,fill:"transparent",roughness:2.8,bowing:1.6})}function h9(t,e,i,h){let f=h8(),c=fl(f.x,f.y,f.width,f.height);h5(c),h6(c,t,e),fh(f,0,0,1,1,t,e),ft(f),ff(f,.74,.54,i,h),fo(f.x+14,f.y+22,f.width-36,f.height-50,e),h7(f)}function ft(t){let e={x:t.x,y:t.y,width:.5*t.width,height:.5*t.height};fh(e,0,0,1,1,"#314d7c","#20375e"),fe(e,0,0,1,1,"#fbfdfa",13),fe(e,1,0,0,1,"#fbfdfa",13),fe(e,0,0,1,1,"#c83c4a",5),fe(e,1,0,0,1,"#c83c4a",5),fh(e,.42,0,.58,1,"#fbfdfa","#c7d1cc"),fh(e,0,.38,1,.62,"#fbfdfa","#c7d1cc"),fh(e,.46,0,.54,1,"#c83c4a","#8f2633"),fh(e,0,.44,1,.56,"#c83c4a","#8f2633")}function fe(t,i,h,f,c,l,o){e.line(fg(i,h,t),fu(i,h,t),fg(f,c,t),fu(f,c,t),{stroke:l,strokeWidth:o,roughness:2.4,bowing:1.6})}function fi(t,i,h,f,c,l){let o=t+Math.cos(f)*h,a=i+Math.sin(f)*h;for(let s=1;s<=11;s+=1){let n=f+(c-f)*s/11,d=t+Math.cos(n)*h+fk(.8),r=i+Math.sin(n)*h+fk(.8);e.line(o,a,d,r,{stroke:l,strokeWidth:2.1,roughness:2.4,bowing:1.6}),o=d,a=r}}function fh(t,i,h,f,c,l,o){e.polygon(fr(i,h,f,c,t),{stroke:o,strokeWidth:1.2,fill:l,fillStyle:"solid",roughness:2.2,bowing:1.2}),e.polygon(fr(i,h,f,c,t),{stroke:fy(o,.28),strokeWidth:.65,fill:l,fillStyle:"hachure",hachureAngle:-12,hachureGap:12,fillWeight:.55,roughness:2})}function ff(t,i,h,f,c){let l=fg(i,h,t),o=fu(i,h,t),a=.13*t.width,s=.22*t.height;e.polygon([[l-a/2,o-s/2],[l+a/2,o-s/2],[l+.42*a,o+.16*s],[l,o+s/2],[l-.42*a,o+.16*s]],{stroke:fy(c,.75),strokeWidth:1.2,fill:f,fillStyle:"solid",roughness:2.2,bowing:1.15}),e.line(l-.32*a,o,l+.32*a,o,{stroke:c,strokeWidth:1,roughness:2.1,bowing:1.4}),e.line(l,o-.36*s,l,o+.28*s,{stroke:c,strokeWidth:1,roughness:2.1,bowing:1.4})}function fc(t,i,h,f,c){let l=fg(i,h,t),o=fu(i,h,t),a=f*Math.PI/180,s=Math.cos(a),n=Math.sin(a),d=.17*t.width,r=.044*t.height,g=.032*t.width,u=(t,e)=>[l+t*s-e*n,o+t*n+e*s];c.forEach((t,i)=>{let h=(i-1)*r;if(t){let[t,i]=u(-d/2,h),[f,c]=u(d/2,h);e.line(t,i,f,c,{stroke:"#262d2b",strokeWidth:5.2,roughness:2.1,bowing:1.45});return}[[-d/2,-g],[g,d/2]].forEach(([t,i])=>{let[f,c]=u(t,h),[l,o]=u(i,h);e.line(f,c,l,o,{stroke:"#262d2b",strokeWidth:5.2,roughness:2.1,bowing:1.45})})})}function fl(t,e,i,h){let f=[];for(let h=0;h<=6;h+=1)f.push([t+i*h/6+fk(2.2),e+fk(5.2)]);for(let c=0;c<=6;c+=1)f.push([t+i+fk(5.2),e+h*c/6+fk(2.2)]);for(let c=6;c>=0;c-=1)f.push([t+i*c/6+fk(2.2),e+h+fk(5.2)]);for(let i=6;i>=0;i-=1)f.push([t+fk(5.2),e+h*i/6+fk(2.2)]);return f}function fo(t,i,h,f,c){for(let l=0;l<5;l+=1){let o=t+h*(l+.6)/7+fk(10);e.line(o,i+fk(14),o+fk(18),i+f+fk(14),{stroke:c,strokeWidth:fw(.55,1.05),roughness:2.2,bowing:2.4})}for(let l=0;l<3;l+=1){let o=i+f*(l+.8)/5+fk(8);e.line(t+fk(10),o,t+h+fk(10),o+fk(18),{stroke:c,strokeWidth:fw(.45,.85),roughness:2.4,bowing:1.9})}}function fa(t,e,i,h){fs(t,e,i,h,{stroke:"#b68b12",fill:"#ffd84c",hatch:"#ffec62"})}function fs(t,i,h,f,c){let l=[],o=f*Math.PI/180-Math.PI/2;for(let e=0;e<10;e+=1){let f=o+e*Math.PI/5,c=e%2==0?h:.42*h;l.push([t+Math.cos(f)*c+fk(.05*h),i+Math.sin(f)*c+fk(.05*h)])}e.polygon(l,{stroke:c.stroke,strokeWidth:Math.max(1.2,.08*h),fill:c.fill,fillStyle:"solid",roughness:2.3,bowing:1.2}),e.polygon(l,{stroke:c.hatch,strokeWidth:Math.max(.8,.04*h),fill:c.fill,fillStyle:"hachure",hachureAngle:-22,hachureGap:Math.max(6,.22*h),fillWeight:1,roughness:2.2})}function fn(t){return t.saturation<28&&t.brightness>110?{red:250,green:252,blue:249,brightness:250.3,saturation:3}:t}function fd(t,e,i,h,f){var c;let l,o,a,s,n,d,r,g=(l=(c=t.cells).reduce((t,e)=>(t.red+=e.metrics.red,t.green+=e.metrics.green,t.blue+=e.metrics.blue,t),{red:0,green:0,blue:0}),o=c.length||1,a=Math.round(l.red/o),s=Math.round(l.green/o),d=Math.max(a,s,n=Math.round(l.blue/o)),r=Math.min(a,s,n),{red:a,green:s,blue:n,brightness:(a+s+n)/3,saturation:d-r}),u=t.cells.filter(t=>t.isLightNeutral).length>.58*t.cells.length,b=t.startColumn/i,y=(t.endColumn+1)/i;return{color:`rgba(${g.red}, ${g.green}, ${g.blue}, ${u?.88:.98})`,metrics:g,isLightNeutral:u,area:(t.endColumn-t.startColumn+1)*f.width*f.height/(i*h),shouldTexture:e%4==0&&t.endColumn-t.startColumn>2,outline:fr(b,e/h,y,(e+1)/h,f)}}function fr(t,e,i,h,f){return[[t-.003,e-.004],[(t+i)/2,e-.004+fk(6e-4)],[i+.003,e-.004],[i+.003,(e+h)/2],[i+.003,h+.004],[(t+i)/2,h+.004+fk(6e-4)],[t-.003,h+.004],[t-.003,(e+h)/2]].map(([t,e])=>[fg(Math.min(1,Math.max(0,t)),Math.min(1,Math.max(0,e)),f)+fk(.45),fu(Math.min(1,Math.max(0,t)),Math.min(1,Math.max(0,e)),f)+fk(.45)])}function fg(t,e,i){return i.x+i.width*t}function fu(t,e,i){return i.y+i.height*e}function fb(t,e,i){return t.map(t=>[t[0]+e,t[1]+i])}function fy(t,e){let i=t.match(/rgba?\(([^)]+)\)/);return i?`rgba(${i[1].split(",").slice(0,3).join(",")}, ${e})`:t}function fw(t,e){return t+Math.random()*(e-t)}function fk(t){return fw(-t,t)}i=new class{templateDrawers={"🇦🇺":ti,"🇨🇳":K,"🇪🇸":tl,"🇫🇷":tf,"🇮🇹":tc,"🇯🇵":tt,"🇹🇭":th,"🇺🇸":te,"🇻🇦":to,"🇦🇩":ta,"🇦🇪":ts,"🇦🇫":tn,"🇦🇬":td,"🇦🇮":tr,"🇦🇱":tg,"🇦🇲":tu,"🇦🇴":tb,"🇦🇶":ty,"🇦🇷":tw,"🇦🇸":tk,"🇦🇹":tx,"🇦🇼":tp,"🇦🇽":tW,"🇦🇿":tM,"🇧🇦":tS,"🇧🇧":tm,"🇧🇩":tP,"🇧🇪":tv,"🇧🇫":tG,"🇧🇬":tI,"🇧🇭":tO,"🇧🇮":tE,"🇧🇯":tL,"🇧🇱":tC,"🇧🇲":tT,"🇧🇳":t$,"🇧🇴":t_,"🇧🇶":tR,"🇧🇷":tz,"🇧🇸":tD,"🇧🇹":tA,"🇧🇻":tX,"🇧🇼":tY,"🇧🇾":tj,"🇧🇿":tq,"🇨🇦":tF,"🇨🇨":tV,"🇨🇩":tZ,"🇨🇫":tQ,"🇨🇬":tH,"🇨🇭":tN,"🇨🇮":tB,"🇨🇰":tU,"🇨🇱":tJ,"🇨🇲":tK,"🇨🇴":t2,"🇨🇷":t1,"🇨🇺":t3,"🇨🇻":t0,"🇨🇼":t4,"🇨🇽":t8,"🇨🇾":t5,"🇨🇿":t6,"🇩🇪":t7,"🇩🇯":t9,"🇩🇰":et,"🇩🇲":ee,"🇩🇴":ei,"🇩🇿":eh,"🇪🇨":ef,"🇪🇪":ec,"🇪🇬":el,"🇪🇭":eo,"🇪🇷":ea,"🇪🇹":es,"🇫🇮":en,"🇫🇯":ed,"🇫🇰":er,"🇫🇲":eg,"🇫🇴":eu,"🇬🇦":eb,"🇬🇧":ey,"🇬🇩":ew,"🇬🇪":ek,"🇬🇫":ex,"🇬🇬":ep,"🇬🇭":eW,"🇬🇮":eM,"🇬🇱":eS,"🇬🇲":em,"🇬🇳":eP,"🇬🇵":ev,"🇬🇶":eG,"🇬🇷":eI,"🇬🇸":eO,"🇬🇹":eE,"🇬🇺":eL,"🇬🇼":eC,"🇬🇾":eT,"🇭🇰":e$,"🇭🇲":e_,"🇭🇳":eR,"🇭🇷":ez,"🇭🇹":eD,"🇭🇺":eA,"🇮🇩":eX,"🇮🇪":eY,"🇮🇱":ej,"🇮🇲":eq,"🇮🇳":eF,"🇮🇴":eV,"🇮🇶":eZ,"🇮🇷":eQ,"🇮🇸":eH,"🇯🇪":eN,"🇯🇲":eB,"🇯🇴":eU,"🇰🇪":eJ,"🇰🇬":eK,"🇰🇭":e2,"🇰🇮":e1,"🇰🇲":e3,"🇰🇳":e0,"🇰🇵":e4,"🇰🇷":e8,"🇰🇼":e5,"🇰🇾":e6,"🇰🇿":e7,"🇱🇦":e9,"🇱🇧":it,"🇱🇨":ie,"🇱🇮":ii,"🇱🇰":ih,"🇱🇷":ic,"🇱🇸":il,"🇱🇹":io,"🇱🇺":ia,"🇱🇻":is,"🇱🇾":id,"🇲🇦":ir,"🇲🇨":ig,"🇲🇩":iu,"🇲🇪":ib,"🇲🇫":iy,"🇲🇬":iw,"🇲🇭":ik,"🇲🇰":ix,"🇲🇱":ip,"🇲🇲":iW,"🇲🇳":iM,"🇲🇴":iS,"🇲🇵":im,"🇲🇶":iP,"🇲🇷":iv,"🇲🇸":iG,"🇲🇹":iI,"🇲🇺":iO,"🇲🇻":iE,"🇲🇼":iL,"🇲🇽":iC,"🇲🇾":iT,"🇲🇿":i$,"🇳🇦":i_,"🇳🇨":iR,"🇳🇪":iz,"🇳🇫":iD,"🇳🇬":iA,"🇳🇮":iX,"🇳🇱":iY,"🇳🇴":ij,"🇳🇵":iq,"🇳🇷":iF,"🇳🇺":iV,"🇳🇿":iZ,"🇴🇲":iQ,"🇵🇦":iH,"🇵🇪":iN,"🇵🇫":iB,"🇵🇬":iU,"🇵🇭":iJ,"🇵🇰":iK,"🇵🇱":i2,"🇵🇲":i1,"🇵🇳":i3,"🇵🇷":i0,"🇵🇸":i4,"🇵🇹":i8,"🇵🇼":i5,"🇵🇾":i6,"🇶🇦":i7,"🇷🇪":i9,"🇷🇴":ht,"🇷🇸":he,"🇷🇺":hi,"🇷🇼":hh,"🇸🇦":hf,"🇸🇧":hc,"🇸🇨":hl,"🇸🇩":ho,"🇸🇪":ha,"🇸🇬":hs,"🇸🇭":hn,"🇸🇮":hd,"🇸🇯":hr,"🇸🇰":hg,"🇸🇱":hu,"🇸🇲":hb,"🇸🇳":hy,"🇸🇴":hw,"🇸🇷":hk,"🇸🇸":hx,"🇸🇹":hp,"🇸🇻":hW,"🇸🇽":hM,"🇸🇾":hS,"🇸🇿":hm,"🇹🇨":hP,"🇹🇩":hv,"🇹🇫":hG,"🇹🇬":hI,"🇹🇯":hO,"🇹🇰":hE,"🇹🇱":hL,"🇹🇲":hC,"🇹🇳":hT,"🇹🇴":h$,"🇹🇷":h_,"🇹🇹":hR,"🇹🇻":hz,"":K,"🇹🇿":hD,"🇺🇦":hA,"🇺🇬":hX,"🇺🇲":hj,"🇺🇳":hY,"🇺🇾":hq,"🇺🇿":hF,"🇻🇨":hV,"🇻🇪":hZ,"🇻🇬":hQ,"🇻🇮":hH,"🇻🇳":hN,"🇻🇺":hB,"🇼🇫":hU,"🇼🇸":hJ,"🇽🇰":hK,"🇾🇪":h2,"🇾🇹":h1,"🇿🇦":h3,"🇿🇲":h0,"🇿🇼":h4};draw(t){var i,f,c,l;let o,a,s,n,d,r,g,u,b,y;this.clearCanvas(),this.drawPaper();let w=this.templateDrawers[t];w?w():(i=t,f={detailLimit:180,hachureGap:18,textureWeight:.38},g=fl((r=h8()).x,r.y,r.width,r.height),y=(l=b=function(t,e,i=64,h=40){let{data:f,bounds:c}=t,l=f.data,o=[],a=Math.max(1,c.maxX-c.minX),s=Math.max(1,c.maxY-c.minY);for(let t=0;t<h;t+=1){let d=null;for(let r=0;r<i;r+=1){var n;let g=r/i,u=t/h,b=(r+1)/i,y=(t+1)/h,w=function(t,e,i,h,f,c,l,o,a){let s=[[(c+o)/2,(l+a)/2],[c+(o-c)*.28,l+(a-l)*.35],[c+(o-c)*.72,l+(a-l)*.35],[c+(o-c)*.28,l+(a-l)*.72],[c+(o-c)*.72,l+(a-l)*.72]].reduce((c,[l,o])=>{let a=Math.round(i.minX+l*h),s=(Math.round(i.minY+o*f)*e+a)*4,n=t[s+3];return n<30||(c.red+=t[s],c.green+=t[s+1],c.blue+=t[s+2],c.alpha+=n,c.count+=1),c},{red:0,green:0,blue:0,alpha:0,count:0});if(!s.count)return null;let n=Math.round(s.red/s.count),d=Math.round(s.green/s.count),r=Math.round(s.blue/s.count),g=Math.max(n,d,r),u=Math.min(n,d,r);return{alpha:s.alpha/s.count,metrics:{red:n,green:d,blue:r,brightness:(n+d+r)/3,saturation:g-u}}}(l,f.width,c,a,s,g,u,b,y);if(!w||w.alpha<42){d&&(o.push(fd(d,t,i,h,e)),d=null);continue}let k=fn(w.metrics),x=k.brightness>232&&k.saturation<30,p=(n=k,x?"light":`${34*Math.round(n.red/34)}-${34*Math.round(n.green/34)}-${34*Math.round(n.blue/34)}`),W={column:r,metrics:k,isLightNeutral:x,bucket:p};d&&d.bucket===p?(d.endColumn=r,d.cells.push(W)):(d&&o.push(fd(d,t,i,h,e)),d={bucket:p,startColumn:r,endColumn:r,cells:[W]})}d&&o.push(fd(d,t,i,h,e))}return o}(u=(c=i,(o=document.createElement("canvas")).width=560*h,o.height=560*h,(a=o.getContext("2d",{willReadFrequently:!0})).scale(h,h),a.clearRect(0,0,560,560),a.textAlign="center",a.textBaseline="middle",a.font=`${Math.round(380.8)}px Apple Color Emoji, Segoe UI Emoji, Noto Color Emoji, sans-serif`,a.fillText(c,280,291.2),{data:s=a.getImageData(0,0,o.width,o.height),bounds:function(t){let{data:e,width:i,height:h}=t,f={minX:i,minY:h,maxX:0,maxY:0};for(let t=0;t<h;t+=1)for(let h=0;h<i;h+=1)e[(t*i+h)*4+3]<24||(f.minX=Math.min(f.minX,h),f.minY=Math.min(f.minY,t),f.maxX=Math.max(f.maxX,h),f.maxY=Math.max(f.maxY,t));return f.minX>f.maxX||f.minY>f.maxY?{minX:0,minY:0,maxX:i,maxY:h}:f}(s)}),r),n=new Map,l.forEach(t=>{if(t.isLightNeutral)return;let e=`${36*Math.round(t.metrics.red/36)}-${36*Math.round(t.metrics.green/36)}-${36*Math.round(t.metrics.blue/36)}`,i=n.get(e)||{count:0,red:0,green:0,blue:0};i.count+=1,i.red+=t.metrics.red,i.green+=t.metrics.green,i.blue+=t.metrics.blue,n.set(e,i)}),((d=[...n.values()].sort((t,e)=>e.count-t.count)[0])?`rgb(${Math.round(d.red/d.count)}, ${Math.round(d.green/d.count)}, ${Math.round(d.blue/d.count)})`:null)||"#d94444"),h5(g),h6(g,"#fbfdfa","#b9c4c0"),e.polygon(g,{stroke:fy(y,.34),strokeWidth:1.1,fill:y,fillStyle:"hachure",hachureAngle:-10,hachureGap:f.hachureGap,fillWeight:f.textureWeight,roughness:2.1,bowing:1.15}),b.forEach(t=>{e.polygon(t.outline,{stroke:t.isLightNeutral?"rgba(38, 49, 45, 0.08)":fy(t.color,.42),strokeWidth:t.isLightNeutral?.35:.75,fill:t.color,fillStyle:"solid",roughness:2.25,bowing:1.35}),!t.isLightNeutral&&t.shouldTexture&&e.polygon(t.outline,{stroke:"rgba(38, 49, 45, 0.08)",strokeWidth:.35,fill:t.color,fillStyle:"hachure",hachureAngle:-12,hachureGap:20,fillWeight:.3,roughness:1.8})}),function(t,i,h=180){let{data:f,bounds:c}=t,l=f.data,o=Math.max(1,c.maxX-c.minX),a=Math.max(1,c.maxY-c.minY),s=Math.max(5,Math.floor(f.width/88)),n=0,d=0;for(let t=c.minY+s;t<c.maxY-s;t+=s)for(let r=c.minX+s;r<c.maxX-s;r+=s){let g=(t*f.width+r)*4;if(l[g+3]<48||!function(t,e,i,h,f,c){let l=(f*e+h)*4,o=t[l+3];return[[-c,0],[c,0],[0,-c],[0,c],[-c,-c],[c,c]].some(([c,a])=>{let s=Math.min(e-1,Math.max(0,h+c)),n=(Math.min(i-1,Math.max(0,f+a))*e+s)*4,d=t[n+3];return Math.abs(o-d)>90||d<32||Math.abs(t[l]-t[n])+Math.abs(t[l+1]-t[n+1])+Math.abs(t[l+2]-t[n+2])>118})}(l,f.width,f.height,r,t,s))continue;let u=fn(function(t,e){let i=t[e],h=t[e+1],f=t[e+2],c=Math.max(i,h,f),l=Math.min(i,h,f);return{red:i,green:h,blue:f,brightness:(i+h+f)/3,saturation:c-l}}(l,g)),b=u.brightness>232&&u.saturation<30;if(d+=1,b&&d%3!=0)continue;let y=(r-c.minX)/o,w=(t-c.minY)/a,k=fg(y,w,i)+fk(1.4),x=fu(y,w,i)+fk(1.4),p=`rgba(${u.red}, ${u.green}, ${u.blue}, ${b?.48:.82})`;if(e.circle(k,x,fw(3.4,6.8),{stroke:b?"rgba(38, 49, 45, 0.18)":fy(p,.5),strokeWidth:b?.5:.8,fill:p,fillStyle:"solid",roughness:2.1,bowing:1.1}),b||n%4!=0||e.line(k+fk(5),x+fk(5),k+fk(14),x+fk(12),{stroke:"rgba(38, 49, 45, 0.24)",strokeWidth:fw(.45,.8),roughness:2.4,bowing:1.6}),(n+=1)>h)return}}(u,r,f.detailLimit),fo(r.x+14,r.y+22,r.width-36,r.height-50,fy(y,.28)),h7(r))}clearCanvas(){t.clearRect(0,0,J,J)}drawPaper(){t.fillStyle=f,t.fillRect(0,0,J,J),e.rectangle(46,46,J-92,J-92,{roughness:1.4,bowing:.8,stroke:"#d9e3db",strokeWidth:1.2,fill:f,fillStyle:"hachure",hachureGap:24,fillWeight:.28})}},globalThis.RoughEmoji={draw(h,f){!function(i,h){let f=t,c=e,l=J,o=i.getContext("2d",{willReadFrequently:!0});if(!o)throw Error("Canvas 2D context is not available.");t=o,e=new U(i,void 0),J=i.width;try{h()}finally{t=f,e=c,J=l}}(h,()=>i.draw(l(f)))},isFlagEmoji:o,resolveFlag:l}})();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rough-emoji-draw",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "将 Unicode 国旗 emoji 绘制成 Rough.js 手写风格 Canvas 图像的轻量前端库",
5
5
  "author": {
6
6
  "name": "SHUAXINDIARY",
@@ -1,12 +0,0 @@
1
- import type { RoughEmojiApi } from "./types";
2
- /** 浏览器单页主流程:发现 DOM、初始化国旗、绑定表单与下载事件。 */
3
- export declare class RoughEmojiApp {
4
- private readonly api;
5
- private readonly doc;
6
- private readonly win;
7
- constructor(api: RoughEmojiApi, doc?: Document, win?: Window);
8
- /** 如果当前页面包含交互表单,就自动完成首次绘制和表单事件绑定。 */
9
- mount(): void;
10
- /** 查询单页演示 DOM;QA 页面没有这些节点时返回 null。 */
11
- private queryElements;
12
- }