[
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2019 轻剑快马\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README-ja.md",
    "content": "# Cold Stone :tada:\n\n簡潔、シンプル、文字を主体とした [Hexo](https://hexo.io/zh-cn) ブログのテーマ\n\n## プレビュー\n\nlight\n![demo](images/home.jpg)\n\ndark\n![demo](images/home_night.jpg)\n\n[サンプルサイト](https://coldstone.fun)\n\n## 特徴\n\n- 自動的にダークモードへの切り替え\n- PWA（rogressive Web Apps）\n- [Utteranc](https://utteranc.es/) コメント対応\n- モバイルデバイスフレンドリー\n- English/中文/日本語\n\n## クイックスタート\n\nまずは [Hexo](https://hexo.io) をインストールしてプロジェクトを作成します。既にインストール済みならこのトピックをスキップしてください。\n\n```sh\nnpm install -g hexo-cli\n\nhexo init <folder>\n\ncd <folder>\n\nnpm install\n```\n\n### テーマのインストール\n\n```sh\ngit clone https://github.com/dongsu-iis/hexo-theme-cold-stone.git themes/cold-stone --depth 1\n```\n\n### 使い方\n\n1. Hexo プロジェクトフォルダ配下の `_config.yml` ファイルを修正し、theme は変更する\n\n```yml\ntheme: cold-stone\n```\n\n2. `themes/cold-stone` フォルダ配下の `icons` フォルダを `source` フォルダの中へ移動する\n\n3. プロジェクトの親フォルダにて下記のコマンドを実行し、新しいページを作成する\n\n```sh\nhexo new page projects\n\nhexo new page categories\n\nhexo new page tags\n\nhexo new page about\n```\n\n`source/projects/index.md` ファイルに以下のコードを追加します\n\n```md\n---\nlayout: projects\n---\n```\n\n`source/categories/index.md` ファイルに以下のコードを追加します\n\n```md\n---\nlayout: categories\n---\n```\n\n`source/tags/index.md` ファイルに以下のコードを追加します\n\n```md\n---\nlayout: tags\n---\n```\n\n4. 以下のように Hexo ブログの設定情報を修正する `_congfig.yml`\n\n```yml\n# ブログ情報\nseo_title: 冷石的博客\nproject_dir: projects\n\n# ユーザーアイコン\navatar: avatar.png\n\n# Utteranc コメント欄\ncomment:\n  repo: xrr2016/blog\n\n# SNS\nsns:\n  github: xrr2016\n  juejin: 576666b7207703006b1e0f09\n  twitter: xrr2016\n\n# 訪問数の取得（GoogleTagManagerのIdが必要）\ntrack:\n  gaid: xxxxxxxxxxxxxx\n```\n\n5. `source` フォルダ配下に `avatar.png` 画像を追加\n\n6. hexo-wordcount (文字数カウント)をインストール\n\n```sh\nnpm i --save hexo-wordcount\n```\n\n7. hexo-all-minifier (ブログコードを圧縮する)をインストール\n\n```sh\nnpm i --save hexo-all-minifier\n```\n\n### RSS\n\nhexo-generator-feed をインストール（rss リンクを生成）\n\n```sh\nnpm i --save hexo-generator-feed\n```\n\n`_congfig.yml` で rss を true に設定します\n\n```yml\n# RSS\nrss: true\nfeed:\n  type: atom\n  path: atom.xml\n  limit: 20\n  hub:\n  content:\n  content_limit: 140\n  content_limit_delim: ' '\n  order_by: -date\n  icon: avatar.png\n  autodiscovery: true\n```\n\n### ローカル環境にて実行\n\n```sh\nhexo server\n```\n\n### デプロイ\n\nhexo-deployer-git をインストール\n\n```sh\n npm install hexo-deployer-git --save\n```\n\n設定情報を修正\n\n```yml\ndeploy:\n  type: git\n  repo: https://github.com/your-username/your-repo\n  branch: gh-pages\n```\n\nデプロイ command\n\n```sh\nhexo clean && hexo deploy\n```\n\n他のデプロイ方法参考サイト：https://hexo.io/docs/deployment\n\n## 導入実績\n\n[冷石的博客](https://coldstone.fun) 💯\n\n![audits](images/audits.gif)\n\n## TODOS\n\n- [x] 検索機能\n\n- [x] ページング機能\n\n- [x] ページの訪問数の表示\n\n- [x] フレンドリーリンクのページ\n\n## 変更履歴\n\nv2019-10-10\n\n- ブログのトラフィック統計を追加する\n- 記事のフォント統計の表示位置を変更しました\n- 表示するブログ投稿の数を追加しました\n- Safari での表示エラー報告を修正 [issue8](https://github.com/xrr2016/hexo-theme-cold-stone/issues/8)\n\nv2019-10-08\n\n- 日本語のインターフェースとドキュメントを追加、@ [dongsu-iis](https://github.com/dongsu-iis) に感謝\n- コードの強調表示を修正＃[issue](https://github.com/xrr2016/hexo-theme-cold-stone/issues/7)、hexo に付属するコードの強調表示を無効にする必要があります\n- [hexo-all-minifier](https://github.com/chenzhutian/hexo-all-minifier#readme) を追加して、ブログコードを圧縮し、ブログをより速く開きます。\n- 記事に前/次のリンクを追加\n- 記事ラベルスタイル、記事内のリンクスタイルを更新 v\n\nv2019-09-30\n\n- ナビゲーションバーのレイアウトを修正\n- メインページのロード動画時間を増やした\n- ブラウザー設定に沿ってダークモードに切り替えできるように修正\n\nv2019-09-25\n\n- メインページのロード動画を追加\n- テーマの幅を少し縮小\n\nv2019-09-23\n\n- PC 側のトップページレイアウト修正\n- 文字数計算機能 (hexo-wordcount のインストールが必要)\n- PC 側では Google 検索機能を追加\n- フレンドリーリンクページの新規作成\n\n## ライセンス\n\n[MIT](LICENSE)\n\nもしこのテーマが良いと思ったら、このリポジトリーに star をください 😎\n"
  },
  {
    "path": "README-zh.md",
    "content": "# Cold Stone :tada:\n\n一个简洁，清爽，文字为主的 [Hexo](https://hexo.io/zh-cn) 博客主题\n\n## 预览\n\nlight\n![demo](images/home.jpg)\n\ndark\n![demo](images/home_night.jpg)\n\n[预览地址](https://coldstone.fun)\n\n## 特性\n\n- 自动切换夜间模式\n- PWA（渐进式应用）\n- [Utteranc](https://utteranc.es/) 评论系统\n- 移动端友好\n- English/中文\n\n## 快速开始\n\n首先需要安装 [Hexo](https://hexo.io) 用来创建项目，已经初始过的可以跳过此步\n\n```sh\nnpm install -g hexo-cli\n\nhexo init <folder>\n\ncd <folder>\n\nnpm install\n```\n\n### 安装主题\n\n```sh\ngit clone https://github.com/xrr2016/hexo-theme-cold-stone.git themes/cold-stone --depth 1\n```\n\n### 使用\n\n1. 修改你的 Hexo 博客根目录下 `_config.yml` 文件 theme 设置为\n\n```yml\ntheme: cold-stone\n```\n\n2. 将 `themes/cold-stone` 目录下的 `icons` 移动到 `source` 目录下\n\n3. 在项目根目录执行以下命令，新建需要的页面\n\n```sh\nhexo new page projects\n\nhexo new page categories\n\nhexo new page tags\n\nhexo new page about\n```\n\n添加 `source/projects/index.md` 的 layout 配置为\n\n```md\n---\nlayout: projects\n---\n```\n\n添加 `source/categories/index.md` 的 layout 配置为\n\n```md\n---\nlayout: categories\n---\n```\n\n添加 `source/tags/index.md` 的 layout 配置为\n\n```md\n---\nlayout: tags\n---\n```\n\n4. 修改你的 Hexo 博客的配置 `_congfig.yml`，示例如下\n\n```yml\n# 博客设置\nseo_title: 冷石的博客\nproject_dir: projects\n\n# 用户设置\navatar: avatar.png\n\n# Utteranc 评论系统\ncomment:\n  repo: xrr2016/blog\n\n# 社交平台链接：\nsns:\n  github: xrr2016\n  juejin: 576666b7207703006b1e0f09\n\n# 博客访问数据\ntrack:\n  gaid: xxxxxxxxxxxxxx\n```\n\n5. 在 `source` 目录下添加 `avatar.png` 图片\n\n6. 安装 hexo-wordcount (字数统计)\n\n```sh\nnpm i --save hexo-wordcount\n```\n\n7. 安装 hexo-all-minifier (压缩博客代码)\n\n```sh\nnpm i --save hexo-all-minifier\n```\n\n### RSS\n\n安装 hexo-generator-feed (生成 rss 链接)\n\n```sh\nnpm i --save hexo-generator-feed\n```\n\n在 `_congfig.yml` 设置 rss 为 true\n\n```yml\n# RSS\nrss: true\nfeed:\n  type: atom\n  path: atom.xml\n  limit: 20\n  hub:\n  content:\n  content_limit: 140\n  content_limit_delim: ' '\n  order_by: -date\n  icon: avatar.png\n  autodiscovery: true\n```\n\n### 本地运行\n\n```sh\nhexo server\n```\n\n### 发布\n\n安装 hexo-deployer-git\n\n```sh\n npm install hexo-deployer-git --save\n```\n\n修改配置\n\n```yml\ndeploy:\n  type: git\n  repo: https://github.com/your-username/your-repo\n  branch: gh-pages\n```\n\n发布\n\n```sh\nhexo clean && hexo deploy\n```\n\n更多方式参考：https://hexo.io/docs/deployment\n\n## 谁在使用\n\n[冷石的博客](https://coldstone.fun) 💯\n\n![audits](images/audits.gif)\n\n## TODOS\n\n- [x] 搜索功能\n\n- [x] 分类页面\n\n- [x] 显示页面访问量\n\n- [x] 友站链接页面\n\n## 发布日志\n\nv2019-10-10\n\n- 添加博客访问量统计\n- 修改了文章字体统计显示位置\n- 增加了博客文章数量显示\n- 修复 safari 首页动画报错问题 [issue8](https://github.com/xrr2016/hexo-theme-cold-stone/issues/8)\n\nv2019-10-08\n\n- 添加了日文语言界面及文档，感谢 @[dongsu-iis](https://github.com/dongsu-iis)\n- 修复代码高亮问题 #[issue](https://github.com/xrr2016/hexo-theme-cold-stone/issues/7)，需要禁用 hexo 自带的代码高亮\n- 添加 [hexo-all-minifier](https://github.com/chenzhutian/hexo-all-minifier#readme) 压缩博客代码，让博客更快的打开\n- 添加文章内上一篇/下一篇链接\n- 更新了文章标签样式，文章内链接样式\n\nv2019-09-30\n\n- 修改导航栏样式\n- 增加了首页加载动画时间\n- 根据系统主题自动设置夜间模式\n\nv2019-09-25\n\n- 添加了首页加载动画\n- 减小的主体内容宽度\n\nv2019-09-23\n\n- 修改了 PC 端首页布局\n- 新增了文章字数统计功能 (需要在仓库目录安装 hexo-wordcount)\n- PC 端添加了 Google 站内搜索\n- 新增了友链页面\n\n## 协议\n\n[MIT](LICENSE)\n\n如果觉得这个主题不错，请个这个仓库一个 star 吧。😎\n"
  },
  {
    "path": "README.md",
    "content": "# Cold Stone :tada:\n\nA simple, refreshing, text-based [Hexo](https://hexo.io/zh-cn) blog theme.\n\n[中文文档](README-zh.md)\n\n[日本語ドキュメント](README-ja.md)\n\n## Preview\n\nlight\n![demo](images/home.jpg)\n\ndark\n![demo](images/home_night.jpg)\n\n[Preview Link](https://coldstone.fun)\n\n## Feature\n\n- Auto night mode\n- PWA (progressive web application)\n- [Utteranc](https://utteranc.es/) comment System\n- Mobile friendly\n- English/Chinese\n\n## Quick start\n\nFirst you need to install [Hexo](https://hexo.io) to create the project. You can skip this step if you have already started.\n\n```sh\nnpm install -g hexo-cli\n\nhexo init <folder>\n\ncd <folder>\n\nnpm install\n```\n\n### Install theme\n\n```sh\ngit clone https://github.com/xrr2016/hexo-theme-cold-stone.git themes/cold-stone --depth 1\n```\n\n### Usage\n\n1. Modify the `_config.yml` file in your Hexo blog root directory to set theme to\n\n```yml\ntheme: cold-stone\n```\n\n2. Move `icons` in the `themes/cold-stone` directory to the `source` directory\n\n3. Execute the following command at the project root directory, create pages you need\n\n```sh\nhexo new page projects\n\nhexo new page categories\n\nhexo new page tags\n\nhexo new page about\n```\n\nAdd the layout of `source/projects/index.md`\n\n```md\n---\nlayout: projects\n---\n```\n\nAdd the layout of `source/categories/index.md`\n\n```md\n---\nlayout: categories\n---\n```\n\nAdd the layout of `source/tags/index.md`\n\n```md\n---\nlayout: tags\n---\n```\n\n4. Modify the configuration of your Hexo blog `_congfig.yml`, examples are as follows\n\n```yml\n# blog config\nseo_title: 冷石的博客\nproject_dir: projects\n\n# user config\navatar: avatar.png\n\n# Utteranc comment system\ncomment:\n  repo: xrr2016/blog\n\n# sns link：\nsns:\n  github: xrr2016\n  juejin: 576666b7207703006b1e0f09\n\n# page stat\ntrack:\n  gaid: xxxxxxxxxxxxxx\n```\n\n5. Add a `avatar.png` image to the `source` directory\n\n6. Install hexo-wordcount (word count)\n\n```sh\nnpm i --save hexo-wordcount\n```\n\n7. Install hexo-all-minifier (Compress blog code)\n\n```sh\nnpm i --save hexo-all-minifier\n```\n\n### RSS\n\nInstall hexo-generator-feed (generate rss link)\n\n```sh\nnpm i --save hexo-generator-feed\n```\n\nSet rss to true in `_congfig.yml`\n\n```yml\n# RSS\nrss: true\nfeed:\n  type: atom\n  path: atom.xml\n  limit: 20\n  hub:\n  content:\n  content_limit: 140\n  content_limit_delim: ' '\n  order_by: -date\n  icon: avatar.png\n  autodiscovery: true\n```\n\n### Run local\n\n```sh\nhexo server\n```\n\n### Deploy\n\n- install hexo-deployer-git\n\n```sh\n npm install hexo-deployer-git --save\n```\n\n- set config\n\n```yml\ndeploy:\n  type: git\n  repo: https://github.com/your-username/your-repo\n  branch: gh-pages\n```\n\n- publish\n\n```sh\nhexo clean && hexo deploy\n```\n\nMore ways to refer：https://hexo.io/docs/deployment\n\n## Using\n\n[cold stone's blog](https://coldstone.fun) 💯\n\n![audits](images/audits.gif)\n\n## TODOS\n\n- [x] Search\n\n- [x] Category\n\n- [x] Show page views\n\n- [x] Friends link page\n\n## Release log\n\nv2019-10-10\n\n- Add blog traffic statistics\n- Modified the article font statistics display position\n- Added the number of blog posts to display\n- Fixed safari homepage error reporting [issue8](https://github.com/xrr2016/hexo-theme-cold-stone/issues/8)\n\nv2019-10-08\n\n- Added Japanese language interface and documentation, thanks @[dongsu-iis](https://github.com/dongsu-iis)\n- Fix code highlighting #[issue](https://github.com/xrr2016/hexo-theme-cold-stone/issues/7), need to disable the code highlighting that comes with hexo\n- Added [hexo-all-minifier](https://github.com/chenzhutian/hexo-all-minifier#readme) to compress your blog code and let your blog open faster\n- Add a previous/next link in the article\n- Updated article label style, link style within article\n\nV2019-09-30\n\n- Modify the navigation bar style\n- Increse homepage loading animation time\n- Automatically set night mode according to system theme\n\nv2019-09-25\n\n- Added homepage loading animation\n- Reduced body content width\n\nv2019-09-23\n\n- Modified PC home page layout\n- Added article word count function (need install hexo-wordcount under blog folder)\n- Added Google Site Search on the PC side\n- Added friends chain page\n\n## License\n\n[MIT](LICENSE)\n\nIf you think this theme is no bad, please star this repo. 😎\n"
  },
  {
    "path": "_config.yml",
    "content": "# Minifier Site Source\nall_minifier: true\n"
  },
  {
    "path": "languages/en.yml",
    "content": "title: Your Blog Title\n\nnav:\n  home: HOME\n  tags: TAGS\n  about: ABOUT\n  projects: PROJECTS\n  friends: FRIENDS\n  archives: ARCHIVES\n  categories: CATEGORIES\n\npost:\n  postTime: Post\n  updateTime: Last Update\n  tags: Tags\n  more: Read more\n  wordCount: Word Count\n  readingTime: Reading Time\n  notMore: Not More\n  readed: Readed\n\nsearch: Search\n\npage:\n  previous: previous\n  next: next\n\nblog:\n  totalpost: Total\n  wordcount: Blog Word Count\n  visitcount: Blog Visit Count\n\nback: Back\n"
  },
  {
    "path": "languages/ja.yml",
    "content": "title: ブログタイトル\n\nnav:\n  home: ホーム\n  tags: タグ\n  about: 私について\n  friends: 友達\n  projects: プロジェクト\n  archives: アーカイブ\n  categories: カテゴリー\n\npost:\n  postTime: 作成日時\n  updateTime: 更新日時\n  tags: タグ\n  more: もっと読む\n  wordCount: 文字数\n  readingTime: 閲覧時間\n  notMore: それ以上ない\n  readed: 閲覧回数\n\nsearch: 検索\n\npage:\n  previous: 前へ\n  next: 次へ\n\nblog:\n  totalpost: 合計\n  wordcount: 総文字数\n  visitcount: 訪問者数\n\nback: 戻る\n"
  },
  {
    "path": "languages/zh.yml",
    "content": "title: 你的博客标题\n\nnav:\n  home: 首页\n  tags: 标签\n  about: 关于\n  friends: 友链\n  projects: 项目\n  archives: 归档\n  categories: 分类\n\npost:\n  postTime: 发布于\n  updateTime: 最后更新\n  tags: 标签\n  more: 阅读全文\n  wordCount: 字数\n  readingTime: 阅读时间\n  notMore: 没有更多了\n  readed: 阅读量\n\nsearch: 搜索\n\npage:\n  previous: 上一页\n  next: 下一页\n\nblog:\n  totalpost: 共计\n  wordcount: 总字数\n  visitcount: 访客数\n\nback: 返回\n"
  },
  {
    "path": "layout/_partial/bio.ejs",
    "content": "<div class=\"avatar\">\n  <img class=\"avatar-img\" src=\"<%= config['root'] %><%= config['avatar'] %>\" />\n</div>\n\n<h2 class=\"username\"><%= config.author %></h2>\n\n<p class=\"subtitle\"><%= config.subtitle %></p>\n\n<p class=\"about-links\">\n\t<% if (config.sns.github) { %>\n\t\t<a class=\"about-link\" target=\"_blank\" rel=\"noopener\" href=\"https://github.com/<%= config.sns.github %>\">Github</a>\n\t<% } %>\n\t<% if (config.sns.juejin) { %>\n\t\t<a class=\"about-link\" target=\"_blank\" rel=\"noopener\" href=\"https://juejin.im/user/<%= config.sns.juejin %>\">掘金</a>\n\t<% } %>\n\t<% if (config.sns.twitter) { %>\n\t\t<a class=\"about-link\" target=\"_blank\" rel=\"noopener\" href=\"https://twitter.com/<%= config.sns.twitter %>\">Twitter</a>\n\t<% } %>\n\n</p>\n"
  },
  {
    "path": "layout/_partial/footer.ejs",
    "content": "<footer class=\"footer\">\n  <svg class=\"wave\" id=\"wave\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1440 320\">\n    <path fill=\"#fff\" fill-opacity=\"1\"\n      d=\"M0,96L24,117.3C48,139,96,181,144,197.3C192,213,240,203,288,213.3C336,224,384,256,432,240C480,224,528,160,576,133.3C624,107,672,117,720,106.7C768,96,816,64,864,85.3C912,107,960,181,1008,202.7C1056,224,1104,192,1152,181.3C1200,171,1248,181,1296,154.7C1344,128,1392,64,1416,32L1440,0L1440,320L1416,320C1392,320,1344,320,1296,320C1248,320,1200,320,1152,320C1104,320,1056,320,1008,320C960,320,912,320,864,320C816,320,768,320,720,320C672,320,624,320,576,320C528,320,480,320,432,320C384,320,336,320,288,320C240,320,192,320,144,320C96,320,48,320,24,320L0,320Z\">\n    </path>\n  </svg>\n\n  <div class=\"footer-content wrapper\">\n    <div class=\"footer-toggle\">\n      <button class=\"menu-button dark-btn\" data-theme=\"dark\" aria-label=\"Switch to dark mode\"\n        title=\"Switch to dark mode\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"\n          fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\n          class=\"feather feather-moon undefined\">\n          <path d=\"M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z\"></path>\n        </svg>\n      </button>\n\n      <button class=\"menu-button light-btn\" data-theme=\"light\" aria-label=\"Switch to light mode\"\n        title=\"Switch to light mode\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"\n          fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\n          class=\"feather feather-sun undefined\">\n          <circle cx=\"12\" cy=\"12\" r=\"5\"></circle>\n          <line x1=\"12\" y1=\"1\" x2=\"12\" y2=\"3\"></line>\n          <line x1=\"12\" y1=\"21\" x2=\"12\" y2=\"23\"></line>\n          <line x1=\"4.22\" y1=\"4.22\" x2=\"5.64\" y2=\"5.64\"></line>\n          <line x1=\"18.36\" y1=\"18.36\" x2=\"19.78\" y2=\"19.78\"></line>\n          <line x1=\"1\" y1=\"12\" x2=\"3\" y2=\"12\"></line>\n          <line x1=\"21\" y1=\"12\" x2=\"23\" y2=\"12\"></line>\n          <line x1=\"4.22\" y1=\"19.78\" x2=\"5.64\" y2=\"18.36\"></line>\n          <line x1=\"18.36\" y1=\"5.64\" x2=\"19.78\" y2=\"4.22\"></line>\n        </svg>\n      </button>\n    </div>\n\n    <p>Copyright &copy; 2019 &nbsp;</p>\n    <a class=\"theme-link\" rel=\"noopener\" href=\"https://github.com/xrr2016/hexo-theme-cold-stone\" target=\"_blank\">\n      Theme Cold Stone\n    </a>\n  </div>\n</footer>\n"
  },
  {
    "path": "layout/_partial/head.ejs",
    "content": "<head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"chrome=1\">\n    <meta name=\"renderer\" content=\"webkit|ie-comp|ie-stand\">\n    <meta name=\"referrer\" content=\"no-referrer\">\n    <meta name=\"theme-color\" content=\"#333333\">\n    <meta name=\"mobile-web-app-capable\" content=\"yes\">\n    <meta name=\"google\" content=\"notranslate\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n    <meta name=\"keyword\"  content=\"<%= config.keywords %>\">\n    <meta name=\"description\" content=\"<%= config.description %>\">\n    <title><%_ if (page.title) { %><%= page.title + ' - ' + config.seo_title %><% } else {%><%= config.seo_title %><% } _%></title>\n    <base href=\"/\">\n    <link rel=\"preconnect\" href=\"//cdn.bootcss.com\">\n    <link rel=\"manifest\" href=\"<%= config.root %>manifest.json\">\n    <link rel=\"shortcut icon\" href=\"<%= config.root %>icons/icon-72x72.png\">\n    <link rel=\"apple-touch-icon\" href=\"<%= config.root %>icons/icon-192x192.png\">\n    <link href=\"https://cdn.bootcss.com/highlight.js/9.15.10/styles/atom-one-light.min.css\" rel=\"stylesheet\">\n    <link href=\"https://cdn.bootcss.com/highlight.js/9.15.10/styles/atom-one-dark.min.css\" rel=\"stylesheet\" media=\"screen and (prefers-color-scheme: dark)\">\n    <!-- UIkit CSS -->\n    <link href=\"https://cdn.bootcss.com/uikit/3.2.0/css/uikit.min.css\" rel=\"stylesheet\">\n    <!-- UIkit JS -->\n    <script src=\"https://cdn.bootcss.com/uikit/3.2.0/js/uikit.min.js\" async></script>\n    <script src=\"https://cdn.bootcss.com/uikit/3.2.0/js/uikit-icons.min.js\" async></script>\n    <%- css(['styles/cold-stone.css']) %>\n    <noscript>\n      <p class=\"text-center\">你的浏览器还没开启 Javascript 功能！</p>\n    </noscript>\n</head>\n"
  },
  {
    "path": "layout/_partial/header.ejs",
    "content": "<header class=\"header\" uk-sticky=\"top: 100; animation: uk-animation-slide-top; bottom: #sticky-on-scroll-up\">\n  <nav class=\"wrapper header-content\">\n    <div class=\"nav-overlay uk-navbar-left\">\n      <h1 class=\"title nav-list-item uk-logo\" data-link=\"<%= url_for(config.root) %>\">\n        <% if(config.title) { %>\n        <a href=\"<%= config.root %>\" data-link=\"<%= config.root %>\"><%= config.title %></a>\n        <% } else { %>\n        <a href=\"<%= config.root %>\" data-link=\"<%= config.root %>\"><%- __('title') %></a>\n        <% } %>\n      </h1>\n\n      <ul class=\"nav-list\">\n        <% if(config.category_dir) { %>\n        <li class=\"nav-list-item\" data-link=\"<%= url_for(config.category_dir) %>/\">\n          <a class=\"nav-list-link\" href=\"<%= url_for(config.category_dir) %>\"><%- __('nav.categories') %></a>\n        </li>\n        <% } %>\n        <% if(config.friends_dir) { %>\n        <li class=\"nav-list-item\" data-link=\"<%= url_for(config.friends_dir) %>/\">\n          <a class=\"nav-list-link\" href=\"<%= url_for(config.friends_dir) %>\"><%- __('nav.friends') %></a>\n        </li>\n        <% } %>\n        <li class=\"nav-list-item\" data-link=\"/about/\">\n          <a class=\"nav-list-link\" href=\"<%= config.root %><%- 'about/' %>\"><%- __('nav.about') %></a>\n        </li>\n        <% if(config.rss) { %>\n        <li class=\"nav-list-item\" data-link=\"/rss/\">\n          <a class=\"nav-list-link\" href=\"<%= config.root %>atom.xml\">RSS</a>\n        </li>\n        <% } %>\n      </ul>\n    </div>\n\n    <% if (is_post()) { %>\n      <div class=\"uk-navbar-right translate-x\">\n        <a class=\"uk-navbar-toggle\" href=\"#modal-full\" uk-search-icon uk-toggle></a>\n      </div>\n    <% } else { %>\n      <div class=\"uk-navbar-right\">\n        <a class=\"uk-navbar-toggle\" href=\"#modal-full\" uk-search-icon uk-toggle></a>\n      </div>\n    <% } %>\n  </nav>\n</header>\n\n<div id=\"modal-full\" class=\"uk-modal-full uk-modal\" uk-modal>\n  <div class=\"uk-modal-dialog uk-flex uk-flex-center uk-flex-middle\" uk-height-viewport>\n    <button class=\"uk-modal-close-full\" type=\"button\" uk-close></button>\n    <form class=\"uk-search uk-search-large search-form\" action=\"//google.com/search\" method=\"get\" accept-charset=\"UTF-8\"\n      target=\"_blank\">\n      <input class=\"uk-search-input search-form-input\" type=\"search\" name=\"q\" placeholder=\"<%- __('search') %>\"\n        autofocus autocomplete=\"false\">\n      <input type=\"hidden\" name=\"sitesearch\" value=\"<%= config.url %>\">\n    </form>\n  </div>\n</div>\n"
  },
  {
    "path": "layout/_partial/prelude.ejs",
    "content": "<canvas class=\"prelude\" id=\"prelude\"></canvas>\n"
  },
  {
    "path": "layout/_partial/prev_next.ejs",
    "content": "<section class=\"prev-next card slide-in-right\">\n\t<% if (page.prev) { %>\n\t\t<a href=\"<%- config.root %><%- page.prev.path %>\" class=\"link prev\" title=\"<%= page.prev.title %>\">\n\t\t\t<span class=\"hover-underline-animation\">&larr; <%= page.prev.title %></span>\n\t\t</a>\n\t<% } else { %>\n\t\t<a class=\"link-disabled prev link\">&larr; <%= __('post.notMore') %></a>\n\t<% } %>\n\t<% if (page.next){ %>\n\t\t<a href=\"<%- config.root %><%- page.next.path %>\" class=\"link next\" title=\"<%= page.next.title %>\">\n\t\t\t<span class=\"hover-underline-animation\"><%= page.next.title %> &rarr;</span>\n\t\t</a>\n\t<% } else { %>\n\t\t<a class=\"link-disabled link next\"><%= __('post.notMore') %> &rarr;</a>\n\t<% } %>\n</section>\n"
  },
  {
    "path": "layout/_partial/script.ejs",
    "content": "<script>\n\twindow.COLD_STONE = {\n\t\troot: \"<%= config.root %>\",\n\t\tauthor: \"<%- config.author %>\" || '',\n\t\tgaid: \"<%- config.track.gaid %>\" || '',\n\t\trepo: \"<%- config.comment.repo %>\" || '',\n\t}\n</script>\n\n<% if (config.author && is_home()) { %>\n\t<script src=\"https://cdn.bootcss.com/gsap/latest/TweenMax.min.js\"></script>\n\t<%- js('scripts/leon.js') %>\n\t<script>\n\t\tvar leon\n\t\tvar canvas = document.getElementById('prelude')\n\n\t\tvar ANIMATE_TIME = 2 // seconds\n\t\tvar THREE_MINUTE = 3 * 60 * 1000\n\n\t\tvar sw = window.innerWidth\n\t\tvar sh = window.innerHeight\n\t\tvar ctx = canvas.getContext('2d')\n\t\tvar pixelRatio = window.devicePixelRatio\n\t\tvar animatedTime = localStorage.getItem('animatedTime')\n\n\t\tfunction init() {\n\t\t\tcanvas.width = sw * pixelRatio\n\t\t\tcanvas.height = sh * pixelRatio\n\t\t\tctx.scale(pixelRatio, pixelRatio)\n\n\t\t\tleon = new LeonSans({\n\t\t\t\ttext: window.COLD_STONE.author || 'Cold Stone',\n\t\t\t\tcolor: ['#000'],\n\t\t\t\tsize: 80,\n\t\t\t\tweight: 200\n\t\t\t})\n\n\t\t\tdraw()\n\t\t}\n\n\t\tfunction draw() {\n\t\t\tctx.clearRect(0, 0, sw, sh)\n\t\t\tconst x = (sw - leon.rect.w) / 2\n\t\t\tconst y = (sh - leon.rect.h) / 2\n\t\t\tleon.position(x, y)\n\t\t\tleon.draw(ctx)\n\n\t\t\trequestAnimationFrame(draw)\n\t\t}\n\n\t\tfunction animate() {\n\t\t\tconst total = leon.drawing.length\n\n\t\t\tfor (let i = 0; i < total; i++) {\n\t\t\t\tTweenMax.fromTo(\n\t\t\t\tleon.drawing[i],\n\t\t\t\tANIMATE_TIME,\n\t\t\t\t{ value: 0 },\n\t\t\t\t{\n\t\t\t\t\tdelay: i * 0.05,\n\t\t\t\t\tvalue: 1,\n\t\t\t\t\tease: Power4.easeOut\n\t\t\t\t}\n\t\t\t\t)\n\t\t\t}\n\n\t\t    const timeout = setTimeout(function() {\n\t\t\t\tclearTimeout(timeout)\n\t\t\t\tdocument.body.removeChild(canvas)\n\t\t\t\tlocalStorage.setItem('animatedTime', Date.now())\n\t\t\t}, ANIMATE_TIME * 1000)\n\t\t}\n\n\t\tif (!animatedTime || Date.now() > parseInt(animatedTime) + THREE_MINUTE) {\n\t\t\tinit()\n\t\t\tanimate()\n\t\t} else {\n\t\t\tdocument.body.removeChild(canvas)\n\t\t}\n\t</script>\n<% } %>\n\n<% if (is_post()) { %>\n\t<script src=\"https://cdn.bootcss.com/highlight.js/9.15.10/highlight.min.js\"></script>\n\t<script>hljs.initHighlightingOnLoad()</script>\n<% } %>\n\n<script src=\"/scripts/busuanzi.js\" referrerpolicy=\"origin\"></script>\n<%- js('scripts/cold-stone.js') %>\n\n<% if(config.track.gaid) { %>\n  <script src=\"//www.googletagmanager.com/gtag/js?id=<%= config.track.gaid %>\"></script>\n\n  <script>\n\twindow.dataLayer = window.dataLayer || []\n\tfunction gtag() {\n\t\tdataLayer.push(arguments)\n\t}\n\tgtag('js', new Date())\n\tgtag('config', window.COLD_STONE.gaid)\n  </script>\n<% } %>\n"
  },
  {
    "path": "layout/_partial/search.ejs",
    "content": "<section class=\"card\">\n    <form action=\"//google.com/search\" method=\"get\" accept-charset=\"UTF-8\" class=\"search-form\" target=\"_blank\">\n      <input type=\"search\" name=\"q\" class=\"search-form-input\" placeholder=\"<%- __('search') %>\">\n      <input type=\"hidden\" name=\"sitesearch\" value=\"<%= config.url %>\">\n   </form>\n</section>\n"
  },
  {
    "path": "layout/about.ejs",
    "content": "---\nlayout: layout\n---\n\n<section class=\"card about slide-in-right\">\n  <%- partial('_partial/bio', null, {cache: true}) %>\n</section>\n"
  },
  {
    "path": "layout/archive.ejs",
    "content": "---\nlayout: layout\n---\n\n<%\nconst years = {};\nsite.posts.sort('date').reverse().forEach(function(post){\n    let year = post.date.year()\n    if(years[year]===undefined){\n        years[year] = [];\n    }\n    years[year].push(post);\n});\n%>\n\n<section class=\"animate-list\">\n    <div class=\"card slide-in-right\"><%= __('blog.totalpost') %>&#58; <%= site.posts.length %></div>\n    <!-- 归档列表 -->\n    <ul class=\"archives list-unstyled \">\n        <% Object.keys(years).reverse().forEach(function(year){  %>\n            <li class=\"card slide-in-right\">\n                <h2 class=\"archive-name\"><%= year %></h2>\n                <ul class=\"archive-list list-unstyled\">\n                    <% years[year].map(function(post){  %>\n                    <li>\n                        <span class=\"archive-date\"><%= post.date.format('MM-DD') %></span>\n                        <a href=\"<%- config.root %><%- post.path %>\">\n                            <span class=\"hover-underline-animation\">\n                                <%- (post.title || \"Untitled\").replace(/[<>&\"]/g,function(c){\n                                    return {'<':'&lt;','>':'&gt;','&':'&amp;','\"':'&quot;'}[c];\n                                }) %>\n                            </span>\n                        </a>\n                    </li>\n                <% }) %>\n                </ul>\n            </li>\n        <% }) %>\n    </ul>\n</section>\n"
  },
  {
    "path": "layout/categories.ejs",
    "content": "<!-- 分类列表 -->\n<ul class=\"list-unstyled animate-list\">\n  <% site.categories.map(function(category){  %>\n    <li class=\"card slide-in-right\">\n        <h2 class=\"category-name\" id=\"<%= category.name %>\"><%= category.name %>&nbsp;<small><%= category.posts.length %></small></h2>\n        <% category.posts.map(function(post){  %>\n            <a class=\"tag-post-title\" href=\"<%- config.root %><%- post.path %>\">\n                <p class=\"hover-underline-animation\">\n                    <%-_ (post.title || \"Untitled\").replace(/[<>&\"]/g,function(c){\n                        return {'<':'&lt;','>':'&gt;','&':'&amp;','\"':'&quot;'}[c];\n                    }) _%>\n                </p>\n            </a>\n        <% }) %>\n    </li>\n  <% }) %>\n</ul>\n\n"
  },
  {
    "path": "layout/friends.ejs",
    "content": "---\nlayout: layout\n---\n\n<ul class=\"list-unstyled animate-list\">\n   <li class=\"animate-list__item card slide-in-right\">\n\t  空空如也...\n   </li>\n</ul>\n"
  },
  {
    "path": "layout/index.ejs",
    "content": "---\nlayout: layout\n---\n\n<section class=\"index-content\">\n    <div class=\"index-post-list\">\n        <ul class=\"index-list list-unstyled animate-list\"\n            uk-scrollspy=\"target: > li; cls: uk-animation-slide-top-small;\">\n            <% page.posts.each(function(post) { %>\n            <li class=\"animate-list__item card card-hover\">\n                <h2 class=\"animate-list__title\">\n                    <a class=\"index-post-link\" href=\"<%- config.root %><%- post.path %>\">\n                        <%- (post.title || \"Untitled\").replace(/[<>&\"]/g,function(c){\n                            return {'<':'&lt;','>':'&gt;','&':'&amp;','\"':'&quot;'}[c];\n                        }) %>\n                    </a>\n                </h2>\n                <p><%- post.excerpt %></p>\n                <p class=\"animate-list__desc\">\n                    <span class=\"post-info\">\n                        <span><%= __('post.postTime') %>&#58;</span>\n                        <time class=\"post-time\"\n                            datetime=\"<%= post.date.format(config.date_format) _%>\"><%= post.date.format(config.date_format) _%></time>&nbsp;\n                        <span><%= __('post.wordCount') %>&#58; <%= wordcount(post.more) %></span>&nbsp;\n                        <% if (post.tags) { %>\n                        <span><%= __('post.tags') _%>&#58; </span>\n                        <span class=\"meta-tags\">\n                            <% post.tags.forEach(function(tag){ %>\n                            <a class=\"meta-tag\" href=\"<%= config.root %>tags/#<%= tag.name %>\"\n                                title=\"<%= tag.name %>\"><%= tag.name %></a>\n                            <% }) %>\n                        </span>\n                        <% } %>\n                    </span>\n                </p>\n            </li>\n            <% }); _%>\n        </ul>\n\n        <% if(page.total > 2) { %>\n        <nav class=\"paginator\">\n            <%- paginator({\n                prev_text: '←',\n                next_text: '→'\n            }) %>\n        </nav>\n        <% } else { %>\n        <ul class=\"list-unstyled pager\">\n            <li class=\"left\">\n                <% if (page.prev){ %>\n                <a href=\"<%- config.root %><%- page.prev_link %>\">&larr; <%= __('page.previous') %></a>\n                <% } else { %>\n                <a class=\"link-disabled\">&larr; <%= __('page.previous') %></a>\n                <% } %>\n            </li>\n            <li class=\"right\">\n                <% if (page.next){ %>\n                <a href=\"<%- config.root %><%- page.next_link %>\"><%= __('page.next') %> &rarr;</a>\n                <% } else { %>\n                <a class=\"link-disabled\"><%= __('page.next') %> &rarr;</a>\n                <% } %>\n            </li>\n        </ul>\n        <% } %>\n    </div>\n\n    <aside class=\"index-aside\">\n        <div class=\"card aside-tags\">\n            <ul class=\"tags list-unstyled\" uk-sortable=\"handle: .tag-item\">\n                <% site.tags.map(function(tag){  %>\n                <li class=\"tag-item\"><a href=\"<%= config.root %>tags/#<%= tag.name %>\" title=\"<%= tag.name %>\"\n                        rel=\"<%= tag.length %>\">#<%= tag.name %></a></li>\n                <% }) %>\n            </ul>\n        </div>\n\n        <div class=\"card\">\n            <%- list_archives({\n                class: 'archive-tag',\n                order: -1,\n                format: 'YYYY-MM',\n            }) %>\n        </div>\n\n        <div class=\"card\">\n            <p class=\"subtitle hide\" id=\"busuanzi_container_site_uv\">\n                <%= __('blog.visitcount') %>&#58; <span id=\"busuanzi_value_site_uv\"></span>\n            </p>\n            <p class=\"subtitle\"><%= __('blog.wordcount') %>&#58; <%= totalcount(site) %></p>\n        </div>\n    </aside>\n</section>\n"
  },
  {
    "path": "layout/layout.ejs",
    "content": "<!DOCTYPE html>\n<html lang=\"<%- config.language %>\">\n  <%- partial('_partial/head') %>\n  <body>\n    <% if (config.author && is_home()) { %>\n      <%- partial('_partial/prelude', null, {cache: false}) %>\n    <% } %>\n\n    <%- partial('_partial/header', null, {cache: false}) %>\n\n    <main class=\"main wrapper\"><%- body %></main>\n\n    <% if (!is_post()) { %>\n      <%- partial('_partial/footer', null, {cache: false}) %>\n    <% } %>\n\n    <%- partial('_partial/script', null, {cache: false}) %>\n  </body>\n</html>\n"
  },
  {
    "path": "layout/post.ejs",
    "content": "<article class=\"article slide-in-right uk-article\">\n  <section class=\"article-header\">\n    <h1 class=\"article-title uk-article-title\">\n      <%- trim(page.title.replace(/[<>&\"]/g, function(c){\n        return {'<':'&lt;','>':'&gt;','&':'&amp;','\"':'&quot;'}[c];\n      })) %>\n    </h1>\n    <p class=\"article-meta uk-article-meta\">\n      <span class=\"meta-info\">\n        <span>\n          <%= __('post.updateTime') %>&#58;<time class=\"post-time\"\n            datetime=\"<%= page.updated.format(config.date_format) %>\"><%= page.updated.format(config.date_format) %></time>\n        </span>\n        <span><%= __('post.readingTime') %>&#58; <%= min2read(page.more) %> min</span>\n        <span class=\"hide\" id=\"busuanzi_container_page_pv\"><%= __('post.readed') %>&#58; <span\n            id=\"busuanzi_value_page_pv\"></span></span>\n      </span>\n    </p>\n  </section>\n  <section class=\"article-content\"><%- page.more %></section>\n</article>\n\n<%- partial('_partial/prev_next', null, {cache: false}) %>\n\n<section class=\"article-toc\">\n  <div class=\"card uk-margin-remove-bottom\">\n    <%- toc(page.more, {list_number\t: false }) %>\n  </div>\n</section>\n\n<section class=\"article slide-in-right\">\n  <div class=\"loader\" id=\"loader\">\n    <svg viewBox=\"0 0 50 50\">\n      <circle class=\"ring\" cx=\"25\" cy=\"25\" r=\"20\"></circle>\n      <circle class=\"ball\" cx=\"25\" cy=\"5\" r=\"3.5\"></circle>\n    </svg>\n  </div>\n\n  <div class=\"comment\" id=\"utteranc\"></div>\n  <noscript>Please activate JavaScript for normal use of comments</noscript>\n</section>\n\n<a class=\"card back-to-top\" id=\"backTop\">&UpArrow;</a>\n"
  },
  {
    "path": "layout/projects.ejs",
    "content": "---\nlayout: layout\n---\n\n<ul class=\"list-unstyled animate-list\">\n   <li class=\"animate-list__item card slide-in-right\">\n\t  <a class=\"animate-list__link\" href=\"https://flutterworld.site/\" rel='noopener' target=\"_blank\">\n\t  \t<h2 class=\"animate-list__title hover-underline-animation\">Project Title</h2>\n\t  \t<p class=\"animate-list__desc\">project description</p>\n\t  </a>\n   </li>\n</ul>\n"
  },
  {
    "path": "layout/tags.ejs",
    "content": "<ul class=\"tags list-unstyled\">\n    <% site.tags.map(function(tag){  %>\n        <li class=\"tag-item\"><a href=\"<%= config.root %>tags/#<%= tag.name %>\" title=\"<%= tag.name %>\" rel=\"<%= tag.length %>\">#<%= tag.name %></a></li>\n    <% }) %>\n</ul>\n\n<!-- 标签列表 -->\n<ul class=\"list-unstyled animate-list\">\n  <% site.tags.map(function(tag){  %>\n    <li class=\"card slide-in-right\">\n        <h2 class=\"tag-name\" id=\"<%= tag.name %>\"><%= tag.name %></h2>\n        <% tag.posts.map(function(post){  %>\n            <a class=\"tag-post-title\" href=\"<%- config.root %><%- post.path %>\">\n                <p class=\"hover-underline-animation\">\n                    <%-_ (post.title || \"Untitled\").replace(/[<>&\"]/g,function(c){\n                        return {'<':'&lt;','>':'&gt;','&':'&amp;','\"':'&quot;'}[c];\n                    }) _%>\n                </p>\n            </a>\n        <% }) %>\n    </li>\n  <% }) %>\n</ul>\n"
  },
  {
    "path": "source/manifest.json",
    "content": "{\n  \"name\": \"你的博客标题\",\n  \"short_name\": \"博客标题\",\n  \"theme_color\": \"#606266\",\n  \"background_color\": \"#ffffff\",\n  \"display\": \"standalone\",\n  \"start_url\": \"/\",\n  \"orientation\": \"portrait\",\n  \"Scope\": \"/\",\n  \"icons\": [\n    {\n      \"src\": \"/icons/icon-72x72.png\",\n      \"sizes\": \"72x72\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"/icons/icon-96x96.png\",\n      \"sizes\": \"96x96\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"/icons/icon-128x128.png\",\n      \"sizes\": \"128x128\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"/icons/icon-144x144.png\",\n      \"sizes\": \"144x144\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"/icons/icon-152x152.png\",\n      \"sizes\": \"152x152\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"/icons/icon-192x192.png\",\n      \"sizes\": \"192x192\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"/icons/icon-384x384.png\",\n      \"sizes\": \"384x384\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"/icons/icon-512x512.png\",\n      \"sizes\": \"512x512\",\n      \"type\": \"image/png\"\n    }\n  ]\n}\n"
  },
  {
    "path": "source/scripts/busuanzi.js",
    "content": "var bszCaller, bszTag;\n!function() {\n    var c, d, e, a = !1, b = [];\n    ready = function(c) {\n        return a || \"interactive\" === document.readyState || \"complete\" === document.readyState ? c.call(document) : b.push(function() {\n            return c.call(this)\n        }),\n        this\n    }\n    ,\n    d = function() {\n        for (var a = 0, c = b.length; c > a; a++)\n            b[a].apply(document);\n        b = []\n    }\n    ,\n    e = function() {\n        a || (a = !0,\n        d.call(window),\n        document.removeEventListener ? document.removeEventListener(\"DOMContentLoaded\", e, !1) : document.attachEvent && (document.detachEvent(\"onreadystatechange\", e),\n        window == window.top && (clearInterval(c),\n        c = null)))\n    }\n    ,\n    document.addEventListener ? document.addEventListener(\"DOMContentLoaded\", e, !1) : document.attachEvent && (document.attachEvent(\"onreadystatechange\", function() {\n        /loaded|complete/.test(document.readyState) && e()\n    }),\n    window == window.top && (c = setInterval(function() {\n        try {\n            a || document.documentElement.doScroll(\"left\")\n        } catch (b) {\n            return\n        }\n        e()\n    }, 5)))\n}(),\nbszCaller = {\n    fetch: function(a, b) {\n        var c = \"BusuanziCallback_\" + Math.floor(1099511627776 * Math.random());\n        window[c] = this.evalCall(b),\n        a = a.replace(\"=BusuanziCallback\", \"=\" + c),\n        scriptTag = document.createElement(\"SCRIPT\"),\n\t\tscriptTag.type = \"text/javascript\",\n\t\tscriptTag.referrerPolicy = \"unsafe-url\";\n        scriptTag.defer = !0,\n        scriptTag.src = a,\n        document.getElementsByTagName(\"HEAD\")[0].appendChild(scriptTag)\n    },\n    evalCall: function(a) {\n        return function(b) {\n            ready(function() {\n                try {\n                    a(b),\n                    scriptTag.parentElement.removeChild(scriptTag)\n                } catch (c) {\n                    bszTag.hides()\n                }\n            })\n        }\n    }\n},\nbszCaller.fetch(\"//busuanzi.ibruce.info/busuanzi?jsonpCallback=BusuanziCallback\", function(a) {\n    bszTag.texts(a),\n    bszTag.shows()\n}),\nbszTag = {\n    bszs: [\"site_pv\", \"page_pv\", \"site_uv\"],\n    texts: function(a) {\n        this.bszs.map(function(b) {\n            var c = document.getElementById(\"busuanzi_value_\" + b);\n            c && (c.innerHTML = a[b])\n        })\n    },\n    hides: function() {\n        this.bszs.map(function(a) {\n            var b = document.getElementById(\"busuanzi_container_\" + a);\n            b && (b.style.display = \"none\")\n        })\n    },\n    shows: function() {\n        this.bszs.map(function(a) {\n            var b = document.getElementById(\"busuanzi_container_\" + a);\n            b && (b.style.display = \"inline\")\n        })\n    }\n};\n"
  },
  {
    "path": "source/scripts/cold-stone.js",
    "content": "const themes = {\n  dark: 'dark',\n  light: 'light'\n}\n\nconst documentHead = document.getElementsByTagName('head')[0]\n\nconst localTheme = localStorage.getItem('theme')\nconst isDarkMode = window.matchMedia('(prefers-color-scheme: dark)').matches\nconst darkThemeHref = 'https://cdn.bootcss.com/highlight.js/9.15.10/styles/atom-one-dark.min.css'\n\nfunction insertThemeDarkLink() {\n  const link = document.createElement('link')\n  link.rel = 'stylesheet'\n  link.href = darkThemeHref\n\n  documentHead.appendChild(link)\n}\n\nfunction removeThemeDarkLink() {\n  const links = document.querySelectorAll('link')\n\n  for (let i = 0; i < links.length; i++) {\n    const link = links[i]\n\n    if (link.href === darkThemeHref) {\n      documentHead.removeChild(link)\n    }\n  }\n}\n\n// service worker\nif ('serviceWorker' in navigator) {\n  window.addEventListener('load', () => {\n    const path = window.COLD_STONE.root + 'sw.js'\n    navigator.serviceWorker.register(path)\n  })\n}\n\n// nav item\nconst path = location.pathname\nconst navLinkList = Array.from(document.querySelectorAll('.nav-list-item'))\nconst navs = [\n  '/tags/',\n  '/about/',\n  '/friends/',\n  '/projects/',\n  '/archives/',\n  '/categories/'\n]\n\nif (path === '/' || /page/.test(path)) {\n  navLinkList[0].classList.add('active')\n} else {\n  navs.forEach(function (nav, index) {\n    if (nav === path) {\n      const item = navLinkList.find(function (item) {\n        const link = item.dataset.link\n        return link === nav\n      })\n\n      if (item) {\n        item.classList.add('active')\n      }\n    }\n  })\n}\n\n// article toc\nconst tocLinkList = document.querySelectorAll('.toc-link')\n\ntocLinkList.forEach(function (link) {\n  const href = link.href\n  const newHref = href.replace(location.origin + '/', location.href)\n  link.setAttribute('href', newHref)\n})\n\n// comment\nconst loader = document.getElementById('loader')\nconst utteranc = document.getElementById('utteranc')\n\nif (utteranc) {\n  const uscript = document.createElement('script')\n\n  uscript.async = true\n  uscript.crossOrigin = 'anonymous'\n  uscript.src = 'https://utteranc.es/client.js'\n  uscript.setAttribute('repo', window.COLD_STONE.repo)\n  uscript.setAttribute('issue-term', 'pathname')\n  const isDarkTheme = isDarkMode || localTheme === themes.dark\n  if (isDarkTheme) {\n    insertThemeDarkLink()\n    uscript.setAttribute('theme', 'github-dark')\n  } else {\n    uscript.setAttribute('theme', 'github-light')\n    removeThemeDarkLink()\n  }\n  utteranc.appendChild(uscript)\n\n  // 假装在加载\n  const timeout = setTimeout(function () {\n    loader.remove()\n    clearTimeout(timeout)\n  }, 3000)\n}\n\n// back\nconst back = document.getElementById('back')\n\nif (back) {\n  back.addEventListener('click', function () {\n    history.back()\n  })\n}\n\n// back-to-top\nconst backTop = document.getElementById('backTop')\n\nif (backTop) {\n  window.addEventListener('scroll', () => {\n    const { scrollTop, scrollHeight, clientHeight } = document.scrollingElement\n\n    if (scrollTop + clientHeight >= scrollHeight) {\n      backTop.classList.add('show')\n    } else {\n      backTop.classList.remove('show')\n    }\n  })\n\n  backTop.addEventListener('click', function () {\n    window.scroll({\n      top: 0,\n      left: 0,\n      behavior: 'smooth'\n    })\n  })\n}\n\n// toggle theme\nconst toggle = document.querySelector('.footer-toggle')\n\nconst darkBtn = document.querySelector('.dark-btn')\nconst lightBtn = document.querySelector('.light-btn')\n\n\n\nif (localTheme === themes.dark) {\n  document.body.classList.add('dark')\n  insertThemeDarkLink()\n  if (darkBtn) {\n    darkBtn.classList.remove('show')\n    lightBtn.classList.add('show')\n  }\n} else {\n  removeThemeDarkLink()\n  if (darkBtn) {\n    lightBtn.classList.remove('show')\n    darkBtn.classList.add('show')\n  }\n}\n\nfunction findTheme(target) {\n  const theme = target.dataset.theme\n  if (theme) {\n    return theme\n  }\n  return findTheme(target.parentElement)\n}\n\nif (toggle) {\n\n  toggle.addEventListener('click', event => {\n    const theme = findTheme(event.target)\n    localStorage.setItem('theme', theme)\n\n    switch (theme) {\n      case themes.dark:\n        document.body.classList.add('dark')\n        darkBtn.classList.remove('show')\n        lightBtn.classList.add('show')\n        break;\n      case themes.light:\n        removeThemeDarkLink()\n        document.body.classList.remove('dark')\n        lightBtn.classList.remove('show')\n        darkBtn.classList.add('show')\n        break;\n    }\n  })\n}\n\n// article\nconst article = document.querySelector('.article')\n\nif (article) {\n  const articleToc = document.querySelector('.article-toc')\n\n  article.addEventListener('mouseenter', () => {\n    // const timeout = setTimeout(() => {\n    //   articleToc.classList.add('fade')\n    //   clearTimeout(timeout)\n    // }, 300)\n    articleToc.classList.add('fade')\n  })\n\n  article.addEventListener('mouseleave', () => {\n    articleToc.classList.remove('fade')\n  })\n}\n\n// wave\n// const wave = document.getElementById('wave')\n\n// if (wave) {\n//   const colors = ['#ffffff']\n//   const random = colors[Math.floor(Math.random() * colors.length)]\n//   const path = wave.getElementsByTagName('path')[0]\n//   path.setAttribute('fill', random)\n// }\n"
  },
  {
    "path": "source/scripts/leon.js",
    "content": "/*!\n * VERSION: 1.6.3\n * DATE: 2019-09-13\n * https://leon-sans.com\n *\n * @license Copyright (c) 2019, Jongmin Kim. All rights reserved.\n **/\nvar LeonSans=function(t){var r={};function e(i){if(r[i])return r[i].exports;var n=r[i]={i:i,l:!1,exports:{}};return t[i].call(n.exports,n,n.exports,e),n.l=!0,n.exports}return e.m=t,e.c=r,e.d=function(t,r,i){e.o(t,r)||Object.defineProperty(t,r,{enumerable:!0,get:i})},e.r=function(t){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(t,\"__esModule\",{value:!0})},e.t=function(t,r){if(1&r&&(t=e(t)),8&r)return t;if(4&r&&\"object\"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(e.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:t}),2&r&&\"string\"!=typeof t)for(var n in t)e.d(i,n,function(r){return t[r]}.bind(null,n));return i},e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,\"a\",r),r},e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},e.p=\"\",e(e.s=0)}([function(t,r,e){var i=e(1).default;t.exports=i},function(t,r,e){\"use strict\";function i(t){return(i=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&\"function\"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?\"symbol\":typeof t})(t)}function n(t,r){for(var e=0;e<r.length;e++){var i=r[e];i.enumerable=i.enumerable||!1,i.configurable=!0,\"value\"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}e.r(r);var a=function(){function t(){!function(t,r){if(!(t instanceof r))throw new TypeError(\"Cannot call a class as a function\")}(this,t),this.handlers_={update:{listeners:[]}}}var r,e,a;return r=t,(e=[{key:\"on\",value:function(t,r){return\"function\"!=typeof r?(console.error(\"The listener callback must be a function, the given type is \".concat(i(r))),!1):\"string\"!=typeof t?(console.error(\"The event name must be a string, the given type is \".concat(i(t))),!1):(void 0===this.handlers_[t]&&(this.handlers_[t]={listeners:[]}),void this.handlers_[t].listeners.push(r))}},{key:\"off\",value:function(t,r){if(void 0===this.handlers_[t])return console.error(\"This event: \".concat(t,\" does not exist\")),!1;this.handlers_[t].listeners=this.handlers_[t].listeners.filter(function(t){return t.toString()!==r.toString()})}},{key:\"dispatch\",value:function(t,r){this.handlers_[t].listeners.forEach(function(t){t(r)})}}])&&n(r.prototype,e),a&&n(r,a),t}(),s=500,o=1,l=900,f=70,y=80,c=1,h=.78,u=.49,d=120,p=2*Math.PI;function v(t,r){return{x:arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,y:arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,w:t.rect.w*u*r,h:(t.rect.h+220)*u*r}}function x(t,r,e){return{x:t/2,y:(r-130*u*e)/2}}function g(t,r,e){var i=t.ratio.x1,n=t.ratio.x2,a=t.ratio.y1,s=t.ratio.y2;return{r:r,cr:e,fr1:c,fr2:h,gx1:i,gx2:n,gy1:a,gy2:s}}function b(t,r,e,i,n){var a=(i-n)/(r-e)*(t-e)+n;return a<n?a=n:a>i&&(a=i),a}function S(t){var r,e,i,n,a,s,o,l,f,y,c,h=t.typo.p.length,u=[];for(r=0;r<h;r++)for(n=(a=t.typo.p[r]).cv.length,e=0;e<n;e++){if(o=(s=a.cv[e]).addRect(t.rect),l=a.d,y=(f=t.pointsLength.lengths[r])/t.pointsLength.max,c=0,r>0)for(i=0;i<r;i++)c+=t.pointsLength.lengths[i]/t.pointsLength.max;y+=c,u.push({pos:o,drawing:t.drawing,direction:l,lengths:f,maxDrawing:y,minDrawing:c,closePath:s.ratio.c,stroke:function(t,r){var e=b(r.drawing.value,r.maxDrawing,r.minDrawing,1,0);if(e>0&&\"a\"!=r.pos.type){var i=r.lengths*e;t.setLineDash([r.lengths]),t.lineDashOffset=r.direction*(i+r.lengths),t.stroke()}}})}return u}function m(t,r){var e,i,n=t.length,a=[];for(e=0;e<n;e++)i=t[e].addRect(r.rect),a.push(i);return a}function O(t,r){var e,i,n,a=r.lines.length;for(e=0;e<a;e++)\"a\"==(n=(i=r.lines[e]).pos).type?(t.beginPath(),t.arc(n.x,n.y,n.radius*i.drawing.value,0,p),t.fill(),t.closePath()):\"m\"==n.type?(t.beginPath(),t.moveTo(n.x,n.y)):\"l\"==n.type?t.lineTo(n.x,n.y):\"b\"==n.type&&t.bezierCurveTo(n.x,n.y,n.x2,n.y2,n.x3,n.y3),i.stroke(t,i)}function J(t,r){t.save(),t.lineWidth=1;var e,i=r.lines.length;for(e=0;e<i;e++)_(t,r.lines[e]);for(t.restore(),t.save(),t.lineWidth=1,i=r.typo.p.length,e=0;e<i;e++)N(t,r.typo.p[e],r);t.restore()}function N(t,r,e){var i,n,a,s=r.v.length;for(i=0;i<s;i++)a=(n=r.cv[i]).addRect(e.rect),\"b\"==n.type?(t.fillStyle=\"#ff2a00\",t.beginPath(),t.arc(a.x3+(a.x3-a.x2),a.y3+(a.y3-a.y2),1.5,0,p),t.fill(),t.beginPath(),t.arc(a.x2,a.y2,1.5,0,p),t.fill(),t.beginPath(),t.moveTo(a.x2,a.y2),t.lineTo(a.x3,a.y3),t.lineTo(a.x3+(a.x3-a.x2),a.y3+(a.y3-a.y2)),t.stroke(),t.beginPath(),t.fillStyle=\"#ffffff\",t.arc(a.x3,a.y3,2.5,0,p),t.fill(),t.stroke()):(t.beginPath(),t.fillStyle=\"#ffffff\",t.strokeStyle=\"#ff2a00\",t.arc(a.x,a.y,2.5,0,p),t.fill(),t.stroke())}function _(t,r){var e=r.pos;\"a\"!=e.type&&(\"m\"==e.type?(t.strokeStyle=\"#ff2a00\",t.beginPath(),t.moveTo(e.x,e.y)):\"l\"==e.type?t.lineTo(e.x,e.y):\"b\"==e.type&&t.bezierCurveTo(e.x,e.y,e.x2,e.y2,e.x3,e.y3),t.stroke())}function w(t,r){t.save(),t.beginPath(),t.lineWidth=1,t.strokeStyle=\"#aaaaaa\";var e,i,n=r.guide.length;for(e=0;e<n;e++)i=r.rect.y+r.grid[e],t.moveTo(r.rect.x,i),t.lineTo(r.rect.x+r.rect.w,i);t.stroke(),t.lineWidth=1,t.beginPath(),t.strokeStyle=\"#aaaaaa\",t.rect(r.rect.x,r.rect.y,r.rect.w,r.rect.h),t.stroke(),t.restore()}var P,k=110,W=Math.cos,D=Math.sin;function T(t,r,e,i,n,a){var s,o,l,f,y,c=r.wavePaths.length,h=function(t,r){return d*t*r}(i,e),u=[];for(t.beginPath(),s=0;s<c;s++){if(o=r.wavePaths[s],a){var v=Math.random()*h-h/2,x=Math.random()*h-h/2;o.rx=o.x+v*W(o.rotation),o.ry=o.y+v*D(o.rotation),o.sx=o.x+v,o.sy=o.y+x}\"a\"==o.type?u.push(o):1==o.start?t.moveTo(o.x,o.y):o.fix?t.lineTo(o.x,o.y):n<k?(l=r.wavePaths[s-1])&&(f=l.x+.5*(o.x-l.x),y=l.y+.5*(o.y-l.y),t.quadraticCurveTo(f,y,o.rx,o.ry)):t.lineTo(o.rx,o.ry)}for(t.stroke(),s=0;s<u.length;s++)o=u[s],t.beginPath(),t.arc(o.x,o.y,o.radius,0,p),t.fill()}function I(t,r,e,i){var n,a,s=Math.round(r.paths.length*r.drawing.value),o=e/2,l=e/3,f=i/2;for(n=0;n<s;n++)1==(a=r.paths[n]).num?t.fillStyle=\"#ff00c5\":t.fillStyle=\"#ff95f8\",\"a\"==a.type?(t.beginPath(),t.arc(a.x,a.y,l,0,p),t.fill()):(t.beginPath(),t.save(),t.translate(a.x,a.y),t.rotate(a.rotation),t.fillRect(-o,-f,e,i),t.restore())}function R(t,r,e,i){var n=i.length,a=(r+n*(Math.abs(r/10|0)+1))%n;if(Array.isArray(i[a])){var s,o=1/((n=i[a].length)+1),l=t.createLinearGradient(e.rect.x,e.rect.y,e.rect.x,e.rect.y+e.rect.h);for(l.addColorStop(o,i[a][0]),s=0;s<n;s++)l.addColorStop(o*(s+1),i[a][s]);l.addColorStop(o*(n+1),i[a][n-1]),t.strokeStyle=l,t.fillStyle=l}else t.strokeStyle=i[a],t.fillStyle=i[a]}function F(t,r){var e,i,n=t.typo.p.length,a=[],s=[],o=0;for(i=0;i<n;i++)o+=(e=M(t,t.typo.p[i].v,r)).l,a.push(e.v),s.push(e.l);return{max:o,lines:a,lengths:s}}function M(t,r,e){var i,n,a,s,o,l,f=r.length,y=[],c=0;for(i=0;i<f;i++)a={},o=(n=r[i]).convert(t,e),0==i||\"a\"==n.type?(a.x1=o.x,a.y1=o.y,a.distance=0,a.radius=o.radius):(s=l.convert(t,e),\"b\"==l.type?(a.x1=s.x3,a.y1=s.y3):(a.x1=s.x,a.y1=s.y),a.x2=o.x,a.y2=o.y,\"b\"==n.type?(a.x3=o.x2,a.y3=o.y2,a.x4=o.x3,a.y4=o.y3,a.distance=j(a.x1,a.y1,a.x2,a.y2,a.x3,a.y3,a.x4,a.y4)):a.distance=C(a.x1,a.y1,a.x2,a.y2)),a.type=n.type,a.rotation=n.ratio.r,a.pat=n.ratio.p,a.fix=n.ratio.f,a.vt=n.ratio.v,y.push(a),c+=a.distance,l=n;return{v:y,l:c}}function j(t,r,e,i,n,a,s,o,l){var f,y,c,h,u=l||40,d=0,p=t,v=r;for(c=1;c<u;c++)f=(h=G(c/u,t,r,e,i,n,a,s,o)).x-p,y=h.y-v,d+=Math.sqrt(f*f+y*y),p=h.x,v=h.y;return f=s-p,y=o-v,d+=Math.sqrt(f*f+y*y)}function G(t,r,e,i,n,a,s,o,l){return r+=(i-r)*t,e+=(n-e)*t,{x:(r+=((i+=(a-i)*t)-r)*t)+((i+=((a+=(o-a)*t)-i)*t)-r)*t,y:(e+=((n+=(s-n)*t)-e)*t)+((n+=((s+=(l-s)*t)-n)*t)-e)*t}}function C(t,r,e,i){var n=e-t,a=i-r;return Math.sqrt(n*n+a*a)}var L,z=-1,A=10;function E(t){var r=function(){++z==L&&(z=0);return P[z]}();t.fillStyle=r,t.strokeStyle=r}function q(t,r,e,i,n,a){var s=e/i,o=b(n.drawing.value,a+s,a,1,0);if(1==r.direction&&(o=b(1-n.drawing.value,a,a+s,1,0)),o>0){var l=e*o;t.setLineDash([e]),t.lineDashOffset=r.direction*(l+e),t.stroke()}return s}function X(t,r,e,i){var n,a;if(1==r.drawing.value)for(n=r.lines.length,a=0;a<n;a++)B(t,r.lines[a],e,i);else for(n=r.drawingPaths.length*r.drawing.value,a=0;a<n;a++)H(t,r.drawingPaths[a],e,i,r.drawing.value)}function B(t,r,e,i){var n=r.pos;\"a\"==n.type?(t.lineStyle(0,i,0),t.beginFill(i),t.drawCircle(n.x,n.y,n.radius),t.endFill()):\"m\"==n.type?(t.lineStyle(e,i,1),t.moveTo(n.x,n.y)):\"l\"==n.type?t.lineTo(n.x,n.y):\"b\"==n.type&&t.bezierCurveTo(n.x,n.y,n.x2,n.y2,n.x3,n.y3),r.closePath&&t.closePath()}function H(t,r,e,i,n){\"a\"==r.type?(t.lineStyle(0,i,0),t.beginFill(i),t.drawCircle(r.x,r.y,r.radius*n),t.endFill()):1==r.start?(t.lineStyle(e,i,1),t.moveTo(r.x,r.y)):t.lineTo(r.x,r.y,1)}function K(t,r,e){var i=e.length,n=(t+i*(Math.abs(t/10|0)+1))%i;if(!Array.isArray(e[n]))return e[n]}function Q(t,r){var e,i,n,a=[];for(e=0;e<6;e++)i=10*e+20,n=10*e+90,a[e]={x1:i*u*r,x2:(t.rect.w-2*i)*u*r,y1:n*u*r,y2:(t.rect.h-n)*u*r-10*e*u*r};return a}function U(t,r){var e,i=[],n=[98,340,815];for(e=0;e<3;e++)i[e]=n[e]*u*r;return i}function V(t){Object.assign(this,t)}function Y(t){this.type=t[0],this.x=t[1]||0,this.y=t[2]||0,\"b\"==this.type?(this.x2=t[3]||0,this.y2=t[4]||0,this.x3=t[5]||0,this.y3=t[6]||0,null==t[7]?this.ratio={x:1,y:1,r:0,p:0,f:0,c:0,v:0}:(this.ratio={},this.ratio.x=null==t[7].x?1:t[7].x,this.ratio.y=null==t[7].y?1:t[7].y,this.ratio.r=t[7].r||0,this.ratio.p=t[7].p||0,this.ratio.f=t[7].f||0,this.ratio.c=t[7].c||0,this.ratio.v=t[7].v||0)):null==t[3]?this.ratio={x:1,y:1,r:0,p:0,f:0,c:0,v:0}:(this.ratio={},this.ratio.x=null==t[3].x?1:t[3].x,this.ratio.y=null==t[3].y?1:t[3].y,this.ratio.r=t[3].r||0,this.ratio.p=t[3].p||0,this.ratio.f=t[3].f||0,this.ratio.c=t[3].c||0,this.ratio.v=t[3].v||0)}function Z(t,r,e,i){var n=r.range.r*e.x,a=(r.range.gx2-r.range.gx1)*n+r.range.gx1,s=(r.range.fr2-r.range.fr1)*n+r.range.fr1;return r.center.x+(t-a)*i.scale*s}function $(t,r,e,i){var n=r.range.r*e.y,a=(r.range.gy2-r.range.gy1)*n+r.range.gy1,s=(r.range.fr2-r.range.fr1)*n+r.range.fr1;return r.center.y+(t-a)*i.scale*s}Object.assign(V.prototype,{addRect:function(t){var r=new V(this);return r.x=this.x+t.x,r.y=this.y+t.y,r.x2=this.x2+t.x,r.y2=this.y2+t.y,r.x3=this.x3+t.x,r.y3=this.y3+t.y,r.rx=this.rx+t.x,r.ry=this.ry+t.y,r.sx=this.sx+t.x,r.sy=this.sy+t.y,r.radius<.5&&(r.radius=.5),r}}),Object.assign(Y.prototype,{convert:function(t,r){var e=Z(this.x,t,this.ratio,r),i=$(this.y,t,this.ratio,r),n=Z(this.x2,t,this.ratio,r),a=$(this.y2,t,this.ratio,r),s=Z(this.x3,t,this.ratio,r),o=$(this.y3,t,this.ratio,r),l=function(t,r,e){var i=0;\"a\"==t&&(i=r.range.cr*e.scale*e.fontRatio);return i}(this.type,t,r),f=new V(this);return f.x=e,f.y=i,f.x2=n,f.y2=a,f.x3=s,f.y3=o,f.radius=l,f}});var tt=null;function rt(t,r,e,i){var n,a,s,o,l,f=r.pointsLength.lines,y=t.scale,c=f.length,h=[],u=[],d=[];for(n=0;n<c;n++)o=f[n],tt=null,h.push(et(o,e,y));for(c=h.length,n=0;n<c;n++){for(a=(l=h[n]).length,d=[],s=0;s<a;s++)(o=l[s]).rotation!=ft&&(i&&o.pat||d.push(o));1==r.typo.p[n].d&&d.reverse(),d.length>0&&(d[0].start=1,Array.prototype.push.apply(u,d))}return u}function et(t,r,e){var i,n,a,s,o,l,f,y=t.length,c=[],h=1,u=1;for(r>-1&&(u=b(r,1,0,80,10)*e),i=0;i<y;i++)if(\"a\"==(s=t[i]).type)c.push(new V({x:s.x1,y:s.y1,rotation:0,type:\"a\",pat:s.pat,fix:s.fix,radius:s.radius}));else if(0==s.distance)null!=(f=it(o=new V({x:s.x1,y:s.y1,rotation:s.rotation,type:s.type,pat:s.pat,fix:s.fix}),tt,s,1))&&(h&&(f.type=\"m\",h=0),c.push(f)),tt=new V(o);else for((a=Math.ceil(s.distance/u))<3&&(a=3),s.vt&&(a=2),n=1;n<a;n++)l=n/(a-1),o=\"b\"==s.type?nt(s,l):new V({x:s.x1+(s.x2-s.x1)*l,y:s.y1+(s.y2-s.y1)*l,type:s.type}),0!=s.rotation&&1==l&&(o.rotation=s.rotation),s.pat&&1==l&&(o.pat=s.pat),s.fix&&1==l&&(o.fix=s.fix),a>0&&null!=(f=it(o,tt,s,l))&&(h&&(f.type=\"m\",h=0),c.push(f)),tt=new V(o);return c}function it(t,r,e,i){if(t.type=e.type,t.distance=e.distance,t.num=i,r&&null==t.rotation){var n=t.x-r.x,a=t.y-r.y,s=Math.atan2(n,a);t.rotation=-s}else t.rotation=t.rotation;return t.rotation==ft?null:t}function nt(t,r){var e=at(t.x1,t.x2,t.x3,t.x4,r),i=at(t.y1,t.y2,t.y3,t.y4,r),n=st(t.x1,t.x2,t.x3,t.x4,r),a=st(t.y1,t.y2,t.y3,t.y4,r);return new V({x:e,y:i,rotation:-Math.atan2(n,a)})}function at(t,r,e,i,n){var a=n*n;return t+(3*-t+n*(3*t-t*n))*n+(3*r+n*(-6*r+3*r*n))*n+(3*e-3*e*n)*a+i*(a*n)}function st(t,r,e,i,n){return 3*n*n*(3*r-t-3*e+i)+6*n*(t-2*r+e)+3*(-t+r)}var ot=Math.PI/180*180,lt=Math.PI/180*90,ft=-100,yt=1.5,ct=\"tofu\",ht=824;function ut(t,r,e,i,n,a,s,o){var l,f=[],y=o.length;for(l=0;l<y;l++)f.push({d:o[l].d,v:dt(o[l].v,r,e)});return{rect:{w:t,h:ht,fw:r,fh:e},ratio:{x1:i,x2:n,y1:a,y2:s},p:f}}function dt(t,r,e){var i,n,a=t.length,s=r/2,o=e/2,l=[];for(n=0;n<a;n++)(i=t[n])[1]-=s,i[2]-=o,\"b\"==i[0]&&(i[3]-=s,i[4]-=o,i[5]-=s,i[6]-=o),l.push(new Y(i));return l}function pt(t,r,e,i){var n=t-e,a=r-i;return-Math.atan2(n,a)}function vt(t,r,e,i,n,a,s,o,l){var f=st(t,e,n,s,l),y=st(r,i,a,o,l);return-Math.atan2(f,y)}var xt=[{d:-1,v:[[\"m\",0,352,{x:.55,y:.3,r:pt(0,352,145-yt,0)}],[\"l\",145-yt,0,{r:pt(0,352,145-yt,0),f:1}],[\"l\",145+yt,0,{r:pt(290,352,145+yt,0),f:1,v:1}],[\"l\",290,352,{x:.55,y:.3,f:1}]]},{d:-1,v:[[\"m\",47,237,{r:lt,p:1}],[\"l\",243,237,{r:lt,p:1,f:1}]]}],gt=[{d:1,v:[[\"m\",293.1,320.1,{r:vt(293.1,320.1,262.2,345,222.8,360,180,360,0),f:1}],[\"b\",262.2,345,222.8,360,180,360],[\"b\",80.6,360,0,279.4,0,180],[\"b\",0,80.6,80.6,0,180,0],[\"b\",222.8,0,262.2,15,293.1,39.9]]}],bt=[{d:-1,v:[[\"m\",95,352,{r:lt,f:1}],[\"b\",191.6,352,270,271.6,270,175,{r:ot}],[\"b\",270,78.4,191.6,0,95,0,{r:lt}],[\"l\",0,0,{r:ot,f:1}],[\"l\",0,352,{r:ot,f:1}],[\"l\",95,352,{r:lt,f:1}]]}],St=[{d:-1,v:[[\"m\",192,0,{x:0,r:lt}],[\"l\",0,0,{r:ot,f:1,x:.5}],[\"l\",0,352,{f:1,x:.5}],[\"l\",192,352,{x:0,r:lt,f:1}]]},{d:-1,v:[[\"m\",0,164,{r:lt,p:1,x:.5}],[\"l\",180,164,{x:0,r:lt,f:1}]]}],mt=[{d:1,v:[[\"m\",202,180,{r:lt,f:1}],[\"l\",352,180,{f:1}],[\"b\",352,279.4,279.4,360,180,360,{r:lt}],[\"b\",80.6,360,0,279.4,0,180,{r:ot}],[\"b\",0,80.6,80.6,0,180,0,{r:lt}],[\"b\",222.8,0,262.1,14.9,293,39.9]]}],Ot=[{d:-1,v:[[\"m\",0,0,{y:0,r:ot}],[\"l\",0,352,{y:0,r:ot,f:1}]]},{d:-1,v:[[\"m\",232,0,{y:0,r:ot}],[\"l\",232,352,{y:0,r:ot,f:1}]]},{d:-1,v:[[\"m\",0,164,{r:lt,p:1}],[\"l\",232,164,{r:lt,f:1,p:1}]]}],Jt=[{d:1,v:[[\"m\",0,352,{y:0,r:ot,f:1}],[\"l\",0,0,{y:0,r:ot}]]}],Nt=[{d:1,v:[[\"m\",0,311,{r:vt(0,311,16.2,341.6,49.3,356,86,356,0),f:1}],[\"b\",16.2,341.6,49.3,356,86,356,{r:lt}],[\"b\",133.5,356,172,317.5,172,270],[\"l\",172.5,0,{y:0,r:ot}]]}],_t=[{d:-1,v:[[\"m\",0,352,{y:0,r:ot}],[\"l\",0,0,{r:ot,f:1}],[\"l\",3,0,{r:ot,p:1,f:1,v:1}],[\"l\",247,351,{r:ot,p:1,f:1}],[\"l\",250,351,{r:ot,f:1,v:1}],[\"l\",250,0,{y:0,r:ot,f:1}]]}],wt=[{d:1,v:[[\"m\",360,180,{r:ot,p:1,f:1}],[\"b\",360,279.4,279.4,360,180,360,{r:lt}],[\"b\",80.6,360,0,279.4,0,180,{r:ot}],[\"b\",0,80.6,80.6,0,180,0,{r:lt}],[\"b\",279.4,0,360,80.6,360,180,{r:ot,c:1}]]}],Pt=[{d:1,v:[[\"m\",0,295.4,{r:vt(0,295.4,17.6,332.1,58.3,360,110.3,360,0),f:1}],[\"b\",17.6,332.1,58.3,360,110.3,360],[\"b\",173.9,360,223.8,329.6,224,271],[\"b\",224.2,214.7,180.7,189.6,112.4,173.3],[\"b\",47.3,157.7,10.9,130.6,12,84.4],[\"b\",13.3,29.8,57.3,0,114.8,0],[\"b\",158.4,0,196.5,20.5,212,51.3]]}],kt=[{d:1,v:[[\"m\",250,0,{y:0,r:ot}],[\"l\",250,231,{r:ot}],[\"b\",250,300,194,356,125,356,{r:lt}],[\"b\",56,356,0,300,0,231,{r:ot}],[\"l\",0,0,{y:0,r:ot}]]}],Wt=[{d:-1,v:[[\"m\",0,0,{x:.6,y:.3,r:pt(0,0,135,186)}],[\"l\",135,186,{r:ot,f:1}],[\"l\",270,0,{x:.6,y:.3,f:1}]]},{d:-1,v:[[\"m\",135,186,{r:ot,p:1}],[\"l\",135,352,{y:0,f:1}]]}],Dt={A:ut(620,290,352,0,0,0,0,JSON.parse(JSON.stringify(xt))),B:ut(596,209,352,-10,-10,0,0,[{d:1,v:[[\"m\",0,164,{r:lt,p:1}],[\"l\",116,164,{r:lt,p:1,f:1}],[\"b\",167.4,164,209,205.6,209,257,{r:ot}],[\"b\",209,308.4,167.4,352,116,352,{r:lt}],[\"l\",0,352,{r:ot,f:1}],[\"l\",0,0,{r:ot,f:1}],[\"l\",116,0,{r:lt}],[\"b\",161.3,0,198,36.7,198,82,{r:ot}],[\"b\",198,127.3,161.3,164,116,164,{r:lt}]]}]),C:ut(700,293.1,360,0,0,0,0,JSON.parse(JSON.stringify(gt))),D:ut(721,270,352,-10,-10,0,0,JSON.parse(JSON.stringify(bt))),E:ut(520,192,352,-5,-80,0,0,JSON.parse(JSON.stringify(St))),F:ut(510,192,352,-5,-80,0,0,[{d:-1,v:[[\"m\",192,0,{x:0,r:lt}],[\"l\",0,0,{r:ot,f:1,x:.5}],[\"l\",0,352,{y:0,f:1,x:.5}]]},{d:-1,v:[[\"m\",0,164,{r:lt,p:1,x:.5}],[\"l\",180,164,{x:0,r:lt,f:1}]]}]),G:ut(840,352,360,0,0,0,0,JSON.parse(JSON.stringify(mt))),H:ut(684,232,352,0,0,0,0,JSON.parse(JSON.stringify(Ot))),I:ut(249,0,352,0,0,0,0,JSON.parse(JSON.stringify(Jt))),J:ut(472,172.5,355.5,10,20,-2,-2,JSON.parse(JSON.stringify(Nt))),K:ut(616,232,352,-10,-20,0,0,[{d:-1,v:[[\"m\",0,0,{y:0,r:ot}],[\"l\",0,352,{y:0,r:ot,f:1}]]},{d:-1,v:[[\"m\",212,0,{x:.7,y:.7,r:pt(212,0,0,164-yt)}],[\"l\",0,164-yt,{r:lt,p:1}],[\"l\",0,164+yt,{r:lt,p:1,v:1}],[\"l\",232,352,{x:.7,y:.7,f:1}]]}]),L:ut(529,192,352,-10,-20,0,0,[{d:-1,v:[[\"m\",0,0,{y:0}],[\"l\",0,352,{f:1}],[\"l\",192,352,{x:0,f:1}]]}]),M:ut(885,330,352,0,0,0,0,[{d:-1,v:[[\"m\",0,352,{y:0,r:ot}],[\"l\",0,0,{r:ot,f:1}],[\"l\",3,0,{r:ot,p:1,f:1,v:1}],[\"l\",165-yt,330,{r:pt(165-yt,330,165-yt,330),f:1}],[\"l\",165+yt,330,{r:pt(165+yt,330,327,0),f:1,v:1}],[\"l\",327,0,{r:ot,p:1,f:1}],[\"l\",330,0,{r:ot,f:1,v:1}],[\"l\",330,352,{y:0,r:ot,f:1}]]}]),N:ut(721,250,352,0,0,0,0,JSON.parse(JSON.stringify(_t))),O:ut(850,360,360,0,0,0,0,JSON.parse(JSON.stringify(wt))),P:ut(568,210,352,-10,-10,-.5,-.5,[{d:1,v:[[\"m\",0,352,{y:0,f:1}],[\"l\",0,0,{f:1}],[\"l\",117,0,{r:lt}],[\"b\",168.4,0,210,41.6,210,93,{r:ot}],[\"b\",210,144.4,168.4,186,117,186,{r:lt}],[\"l\",0,186,{r:lt,p:1}]]}]),Q:ut(850,360,360,0,0,0,0,[{d:-1,v:[[\"m\",360,180,{r:lt,p:1,f:1}],[\"b\",360,80.6,279.4,0,180,0,{r:lt}],[\"b\",80.6,0,0,80.6,0,180,{r:ot}],[\"b\",0,279.4,80.6,360,180,360,{r:lt}],[\"b\",279.4,360,360,279.4,360,180,{r:ot,c:1,f:1}]]},{d:-1,v:[[\"m\",222,222,{x:.5,y:.5,r:pt(222,222,360,360)}],[\"l\",360,360,{x:.5,y:.5,f:1}]]}]),R:ut(634,232,352,-10,-10,-.5,-.5,[{d:-1,v:[[\"m\",0,186,{r:lt,p:1}],[\"l\",139,186,{r:lt}],[\"b\",190.4,186,232,144.4,232,93,{r:ot}],[\"b\",232,41.6,190.4,0,139,0,{r:lt}],[\"l\",0,0,{r:ot,f:1}],[\"l\",0,352,{y:0,f:1}]]},{d:-1,v:[[\"m\",139,186,{p:1,r:pt(139,186,232,352)}],[\"l\",232,352,{x:.5,y:.39,f:1}]]}]),S:ut(560,224,360,0,0,0,0,JSON.parse(JSON.stringify(Pt))),T:ut(568,232,352,0,0,-.5,-.5,[{d:-1,v:[[\"m\",0,0,{x:0,r:lt}],[\"l\",232,0,{x:0,r:lt,f:1}]]},{d:-1,v:[[\"m\",116,0,{r:ot,p:1}],[\"l\",116,352,{y:0,r:ot,f:1}]]}]),U:ut(712,250,355,0,0,-.5,-.5,JSON.parse(JSON.stringify(kt))),V:ut(650,270,352,0,0,0,0,[{d:-1,v:[[\"m\",0,0,{x:.6,y:.1,r:pt(0,0,135-yt,352)}],[\"l\",135-yt,352,{r:pt(0,0,135-yt,352),f:1}],[\"l\",135+yt,352,{r:pt(135+yt,352,270,0),f:1,v:1}],[\"l\",270,0,{x:.6,y:.1,f:1}]]}]),W:ut(894,390,352,0,0,0,0,[{d:-1,v:[[\"m\",0,0,{x:.6,y:.05,r:pt(0,0,86-yt,352)}],[\"l\",86-yt,352,{r:pt(0,0,86-yt,352),f:1}],[\"l\",86+yt,352,{r:pt(86+yt,352,195-yt,0),f:1,v:1}],[\"l\",195-yt,0,{r:pt(86+yt,352,195-yt,0),f:1}],[\"l\",195+yt,0,{r:pt(195+yt,0,304-yt,352),f:1,v:1}],[\"l\",304-yt,352,{r:pt(195+yt,0,304-yt,352),f:1}],[\"l\",304+yt,352,{r:pt(304+yt,352,390,0),f:1,v:1}],[\"l\",390,0,{x:.6,y:.05,f:1}]]}]),X:ut(660,270,352,0,0,0,-7,[{d:-1,v:[[\"m\",10,0,{x:.5,y:.3,r:pt(10,0,270,352)}],[\"l\",270,352,{x:.5,y:.5,f:1}]]},{d:-1,v:[[\"m\",260,0,{x:.5,y:.3,r:pt(260,0,0,352)}],[\"l\",0,352,{x:.5,y:.5,f:1}]]}]),Y:ut(673,270,352,0,0,0,0,JSON.parse(JSON.stringify(Wt))),Z:ut(558,232,352,0,-5,0,0,[{d:-1,v:[[\"m\",8,0,{x:0,r:lt}],[\"l\",224,0,{r:lt,f:1}],[\"l\",224,3,{r:ot,p:1,v:1}],[\"l\",0,349,{r:ot,p:1}],[\"l\",0,352,{r:lt,f:1,v:1}],[\"l\",232,352,{x:0,r:lt,f:1}]]}])},Tt=[{d:-1,v:[[\"m\",232,8,{y:-3.4,r:ot}],[\"l\",232,116,{r:ft}],[\"b\",232,180.1,180.1,232,116,232,{r:lt}],[\"b\",51.9,232,0,180.1,0,116,{r:ot}],[\"b\",0,51.9,51.9,0,116,0,{r:lt}],[\"b\",180.1,0,232,51.9,232,116,{r:ot}],[\"l\",232,224,{y:-.1,r:ot,f:1}]]}],It=[{d:1,v:[[\"m\",212.1,182.9,{r:vt(212.1,182.9,191.1,213.2,156.1,233.1,116.5,233.1,0),f:1}],[\"b\",191.1,213.2,156.1,233.1,116.5,233.1,{r:lt}],[\"b\",52.4,233.1,.5,181.2,.5,117.1,{r:ot}],[\"b\",.5,53,52.4,1.1,116.5,1.1,{r:lt}],[\"b\",156.1,1.1,191.1,21,212.1,51.3]]}],Rt=[{d:-1,v:[[\"m\",232,0,{y:0}],[\"l\",232,239,{r:ft}],[\"b\",232,303.1,180.1,355,116,355,{r:lt}],[\"b\",51.9,355,0,303.1,0,239,{r:ot}],[\"b\",0,174.9,51.9,123,116,123,{r:lt}],[\"b\",180.1,123,232,174.9,232,239,{r:ot}],[\"l\",232,352,{y:0,f:1}]]}],Ft=[{d:1,v:[[\"m\",211.6,182.9,{r:vt(211.6,182.9,191.1,213.2,156.1,233.1,116.5,233.1,0),f:1}],[\"b\",191.1,213.2,156.1,233.1,116.5,233.1,{r:lt}],[\"b\",52.4,233.1,.5,181.2,.5,117.1,{r:ot}],[\"b\",.5,53,52.4,1.1,116.5,1.1,{r:lt}],[\"b\",176.4,1.1,224.9,47.2,225.5,106.1,{r:ot}],[\"l\",.5,106.1,{r:ot,p:1}]]}],Mt=[{d:-1,v:[[\"m\",232,5,{y:-2.8}],[\"l\",232,116,{r:ft}],[\"b\",232,180.1,180.1,232,116,232,{r:lt}],[\"b\",51.9,232,0,180.1,0,116,{r:ot}],[\"b\",0,51.9,51.9,0,116,0,{r:lt}],[\"b\",180.1,0,232,51.9,232,116,{r:ot}],[\"l\",232,222],[\"b\",234.5,300.3,180.2,338.5,116,338,{y:.64,r:lt}],[\"b\",76.2,337.7,36.6,320.7,15.7,290.1,{y:.64,f:1}]]}],jt=[{d:-1,v:[[\"m\",0,0,{y:0,r:ot}],[\"l\",0,352,{y:0,f:1}]]},{d:-1,v:[[\"m\",0,214,{r:ft}],[\"b\",0,163.7,40.7,123,91,123,{r:lt}],[\"b\",141.3,123,182,163.7,182,214,{r:ot}],[\"l\",182,352,{y:0,f:1}]]}],Gt=[{d:-1,v:[[\"m\",0,130,{y:-3.3}],[\"l\",0,352,{y:0,f:1}]]},{d:-1,v:[[\"m\",0,214,{y:0,r:ot,p:1}],[\"b\",0,163.7,40.7,123,91,123,{r:lt}],[\"b\",141.3,123,182,163.7,182,214,{r:ot}],[\"l\",182,352,{y:0,f:1}]]}],Ct=[{d:1,v:[[\"m\",232,116,{r:ot,p:1,f:1}],[\"b\",232,180.1,180.1,232,116,232,{r:lt}],[\"b\",51.9,232,0,180.1,0,116,{r:ot}],[\"b\",0,51.9,51.9,0,116,0,{r:lt}],[\"b\",180.1,0,232,51.9,232,116,{r:ot,c:1}]]}],Lt=[{d:1,v:[[\"m\",0,295.4*.642,{r:vt(0,295.4*.642,11.2992,332.1*.642,58.3*.642,231.12,70.8126,231.12,0),f:1}],[\"b\",11.2992,332.1*.642,58.3*.642,231.12,70.8126,231.12],[\"b\",173.9*.642,231.12,223.8*.642,329.6*.642,143.808,173.982],[\"b\",143.9364,137.8374,116.0094,121.7232,112.4*.642,173.3*.642],[\"b\",30.3666,101.2434,10.9*.642,130.6*.642,12*.642,54.1848],[\"b\",8.5386,29.8*.642,36.7866,0,73.7016,0],[\"b\",101.6928,0,126.153,13.161,136.104,51.3*.642]]}],zt=[{d:-1,v:[[\"m\",0,130,{y:-3}],[\"l\",0,265,{r:ot}],[\"b\",0,315.3,40.7,356,91,356,{r:lt}],[\"b\",141.3,356,182,315.3,182,265,{r:ot,p:1,f:1}]]},{d:-1,v:[[\"m\",182,130,{y:-3}],[\"l\",182,352,{y:0,f:1}]]}],At=[{d:-1,v:[[\"m\",225.5,0,{y:-3,r:pt(225.5,0,116.3,248.8)}],[\"l\",116.3,248.8,{x:.5,y:.64}],[\"b\",71.8,349.6,0,331.5,0,331.5,{x:.5,y:.64,r:vt(0,331.5,71.8,349.6,116.3,248.8,0,331.5,0),f:1}]]},{d:-1,v:[[\"m\",3.2,0,{y:-3,r:pt(3.2,0,125.7,226.6)}],[\"l\",125.7,226.6,{p:1,f:1}]]}],Et={a:ut(600,232,232,10,2,-64,-64,JSON.parse(JSON.stringify(Tt))),b:ut(600,232,352,-10,-2,0,0,[{d:-1,v:[[\"m\",0,0,{y:0,r:ot}],[\"l\",0,239,{r:ft}],[\"b\",0,303.1,51.9,355,116,355,{r:lt}],[\"b\",180.1,355,232,303.1,232,239,{r:ot}],[\"b\",232,174.9,180.1,123,116,123,{r:lt}],[\"b\",51.9,123,0,174.9,0,239,{r:ot}],[\"l\",0,352,{y:0,r:ot,f:1}]]}]),c:ut(520,212.1,233.1,2,-10,-64,-64,JSON.parse(JSON.stringify(It))),d:ut(600,232,352,10,2,0,0,JSON.parse(JSON.stringify(Rt))),e:ut(570,225.5,233.1,0,0,-64,-64,JSON.parse(JSON.stringify(Ft))),f:ut(356,232,352,-40,-40,0,0,[{d:-1,v:[[\"m\",166.6,33,{x:.5,r:vt(166.6,33,159.3,13.1,139.2,0,116.9,0,0)}],[\"b\",159.3,13.1,139.2,0,116.9,0,{r:lt}],[\"b\",88.2,0,65,23.2,65,51.9,{r:ot}],[\"l\",65,352,{y:0,f:1}]]},{d:-1,v:[[\"m\",0,130,{x:0,r:lt}],[\"l\",154,130,{x:0,f:1}]]}]),g:ut(600,232,338,10,2,-117,-117,JSON.parse(JSON.stringify(Mt))),h:ut(520,182,352,0,0,0,0,JSON.parse(JSON.stringify(jt))),i:ut(200,0,352,0,0,0,0,[{d:1,v:[[\"a\",0,90,{y:-3}]]},{d:1,v:[[\"m\",0,352,{y:0,f:1}],[\"l\",0,130,{y:-3}]]}]),j:ut(220,115.9,352,-60,-60,0,0,[{d:1,v:[[\"a\",0,90,{y:-3}]]},{d:1,v:[[\"m\",-115.9,444,{x:.4,y:.63,r:vt(-115.9,444,12.6-115.9,454.4,29.6-115.9,460.2,-70,461.2,0),f:1}],[\"b\",12.6-115.9,454.4,29.6-115.9,460.2,-70,461.2,{x:.4,y:.63,r:lt}],[\"b\",84.5-115.9,463.5,0,435.1,0,396.4,{x:.4,y:.63,r:ot}],[\"l\",0,130,{y:-3}]]}]),k:ut(450,164,352,-10,-10,0,0,[{d:-1,v:[[\"m\",0,0,{y:0,r:ot}],[\"l\",0,352,{y:0,f:1}]]},{d:-1,v:[[\"m\",160,130,{x:.7,y:0,r:pt(164,130,0,236-yt),f:1}],[\"l\",0,236-yt,{r:lt,p:1}],[\"l\",0,236+yt,{r:lt,p:1,v:1}],[\"l\",164,352,{x:.7,y:.7,f:1}]]}]),l:ut(200,0,352,0,0,0,0,[{d:1,v:[[\"m\",0,352,{y:0,f:1}],[\"l\",0,0,{y:0}]]}]),m:ut(740,300,352,0,0,0,0,[{d:-1,v:[[\"m\",0,130,{y:-3.6}],[\"l\",0,352,{y:0,f:1}]]},{d:-1,v:[[\"m\",0,198,{y:0,r:ot,p:1}],[\"b\",0,156.6,33.6,123,75,123,{r:lt}],[\"b\",116.4,123,150,156.6,150,198,{r:ot}],[\"l\",150,352,{y:0,f:1}]]},{d:-1,v:[[\"m\",150,198,{y:0,r:ot,p:1}],[\"b\",150,156.6,183.6,123,225,123,{r:lt}],[\"b\",266.4,123,300,156.6,300,198,{r:ot}],[\"l\",300,352,{y:0,f:1}]]}]),n:ut(520,182,352,0,0,0,0,JSON.parse(JSON.stringify(Gt))),o:ut(580,232,232,0,0,-64,-64,JSON.parse(JSON.stringify(Ct))),p:ut(600,232,338,-10,-2,-117,-117,[{d:-1,v:[[\"m\",0,5,{y:-2.8}],[\"l\",0,116,{r:ft}],[\"b\",0,180.1,51.9,232,116,232,{r:lt}],[\"b\",180.1,232,232,180.1,232,116,{r:ot}],[\"b\",232,51.9,180.1,0,116,0,{r:lt}],[\"b\",51.9,0,0,51.9,0,116,{r:ot}],[\"l\",0,338,{y:0,f:1}]]}]),q:ut(600,232,338,10,2,-117,-117,[{d:-1,v:[[\"m\",232,5,{y:-2.8}],[\"l\",232,116,{r:ft}],[\"b\",232,180.1,180.1,232,116,232,{r:lt}],[\"b\",51.9,232,0,180.1,0,116,{r:ot}],[\"b\",0,51.9,51.9,0,116,0,{r:lt}],[\"b\",180.1,0,232,51.9,232,116,{r:ot}],[\"l\",232,338,{y:0,f:1}]]}]),r:ut(340,119.2,352,-20,-20,0,0,[{d:-1,v:[[\"m\",0,130,{y:-3.3}],[\"l\",0,352,{y:0,f:1}]]},{d:-1,v:[[\"m\",0,181,{r:ot,p:1}],[\"b\",0,181,41.9,101.2,119.2,128.5,{x:0,y:2,r:vt(119.2,128.5,41.9,101.2,0,181,119.2,128.5,0),f:1}]]}]),s:ut(400,143.808,231.12,0,0,-64,-64,JSON.parse(JSON.stringify(Lt))),t:ut(356,232,352,-30,-30,0,0,[{d:-1,v:[[\"m\",65,0,{y:0}],[\"l\",65,304.2],[\"b\",65,332.9,88.2,356.1,116.9,356.1,{r:lt}],[\"b\",139.2,356.1,159.3,343,166.6,317.1,{x:0,f:1}]]},{d:-1,v:[[\"m\",0,130,{x:0,r:lt}],[\"l\",154,130,{x:0,f:1}]]}]),u:ut(520,182,352,0,0,0,0,JSON.parse(JSON.stringify(zt))),v:ut(500,200,352,0,0,0,0,[{d:-1,v:[[\"m\",0,130,{x:.6,y:-3,r:pt(0,130,100-yt,352)}],[\"l\",100-yt,352,{r:pt(0,130,100-yt,352),f:1}],[\"l\",100+yt,352,{r:pt(100+yt,352,200,130),f:1,v:1}],[\"l\",200,130,{x:.6,y:-3,f:1}]]}]),w:ut(700,310,352,0,0,0,0,[{d:-1,v:[[\"m\",0,130,{x:.6,y:-3,r:pt(0,130,78-yt,352)}],[\"l\",78-yt,352,{r:pt(0,130,78-yt,352),f:1}],[\"l\",78+yt,352,{r:pt(78+yt,352,155-yt,130),f:1,v:1}],[\"l\",155-yt,130,{y:1,r:pt(78+yt,352,155-yt,130),f:1}],[\"l\",155+yt,130,{y:1,r:pt(155+yt,130,233-yt,352),f:1,v:1}],[\"l\",233-yt,352,{r:pt(155+yt,130,233-yt,352),f:1}],[\"l\",233+yt,352,{r:pt(233+yt,352,310,130),f:1,v:1}],[\"l\",310,130,{x:.6,y:-3,f:1}]]}]),x:ut(490,210,352,0,0,0,-7,[{d:-1,v:[[\"m\",10,130,{x:.5,y:-1,r:pt(10,130,210,352)}],[\"l\",210,352,{x:.5,y:.5,f:1}]]},{d:-1,v:[[\"m\",200,130,{x:.5,y:-1,r:pt(200,130,0,352)}],[\"l\",0,352,{x:.5,y:.5,f:1}]]}]),y:ut(500,225.5,331.5,10,10,-119,-119,JSON.parse(JSON.stringify(At))),z:ut(420,172,352,0,0,0,0,[{d:-1,v:[[\"m\",6,130,{x:-.5,y:1,r:lt}],[\"l\",166,130,{x:1.8,y:1,r:lt,f:1}],[\"l\",166,133,{x:1.8,y:1,r:ot,p:1,v:1}],[\"l\",0,349,{x:1.7,r:ot,p:1}],[\"l\",0,352,{x:1.7,r:lt,f:1,v:1}],[\"l\",172,352,{x:-.4,r:lt,f:1}]]}])},qt={0:ut(660,270,360,0,0,0,0,[{d:1,v:[[\"m\",270,180,{r:ot,p:1,f:1}],[\"b\",270,279.4,209.6,360,135,360,{r:lt}],[\"b\",60.4,360,0,279.4,0,180,{r:ot}],[\"b\",0,80.6,60.4,0,135,0,{r:lt}],[\"b\",209.6,0,270,80.6,270,180,{r:ot,c:1}]]}]),1:ut(380,76,352,15,15,0,0,[{d:-1,v:[[\"m\",0,51,{x:-2,y:2,r:pt(0,51,73,0)}],[\"l\",73,0,{r:ot,p:1}],[\"l\",76,0,{r:ot,f:1,v:1}],[\"l\",76,352,{y:0,f:1}]]}]),2:ut(580,210,356,0,0,2,2,[{d:-1,v:[[\"m\",3.9,68.8,{x:1.2,y:1.2,r:vt(3.9,68.8,16.7,29,54.2,3.1,98.2,.2,0)}],[\"b\",16.7,29,54.2,3.1,98.2,.2],[\"b\",151.8,-3.3,208.5,38.3,198.9,100.1],[\"b\",197.1,111.8,196.4,142.4,101.5,235.2],[\"b\",11.4,323.2,0,353,0,353,{r:ft}],[\"l\",0,353,{r:lt,p:1}],[\"l\",0,356,{r:lt,f:1,v:1}],[\"l\",210,356,{x:-.5,f:1}]]}]),3:ut(580,222.1,360,0,0,0,0,[{d:-1,v:[[\"m\",10.7,66.3,{r:vt(10.7,66.3,11.2,64.8,11.7,63.3,12.3,61.8,0)}],[\"b\",11.2,64.8,11.7,63.3,12.3,61.8,{r:ft}],[\"b\",25.8,25.9,64.5,0,110.1,0,{r:lt}],[\"b\",167,0,213.1,40.3,213.1,90,{r:ot}],[\"b\",213.1,139.7,167,180,110.1,179.9,{r:lt,f:1}],[\"l\",100.1,179.9,{x:-5,y:1,r:lt,f:1}],[\"l\",110.1,180,{r:lt,p:1}],[\"b\",172,180,222.1,220.3,222.1,270,{r:ot}],[\"b\",222.1,319.7,172,360,110.1,360,{r:lt}],[\"b\",56.9,360,12.4,330.2,1,290.3,{f:1}]]}]),4:ut(596,236,352,0,0,0,0,[{d:1,v:[[\"m\",175,352,{y:0,f:1}],[\"l\",175,0,{f:1}],[\"l\",172,0,{r:lt,p:1,v:1}],[\"l\",0,273,{r:ot,p:1}],[\"l\",0,276,{r:lt,f:1,v:1}],[\"l\",236,276,{x:-.5}]]}]),5:ut(596,208.5,356,0,-5,-2,-2,[{d:1,v:[[\"m\",0,295.7,{r:vt(0,295.7,15.3,333.8,52.2,356.2,97.5,356,0),f:1}],[\"b\",15.3,333.8,52.2,356.2,97.5,356,{r:lt}],[\"b\",159.1,355.7,206.1,306.9,208.5,240.8,{r:ot}],[\"b\",210.9,173.9,162.7,120.8,97.5,125.6,{r:lt}],[\"b\",59.4,128.4,25.5,145.8,5.6,176.4,{f:1}],[\"l\",5.6,176.4,{r:ft}],[\"l\",5.6-3,176.4,{r:ot,p:1,v:1}],[\"l\",11.5,0,{r:lt,f:1}],[\"l\",193.5,0,{x:-.5}]]}]),6:ut(596,215.8,360,0,-2,0,0,[{d:1,v:[[\"m\",7.6,272.3,{r:ot,p:1,f:1}],[\"b\",6.4,265.8,5.8,259.1,5.8,252.2,{r:ot}],[\"b\",5.8,192.6,52.8,144.2,110.8,144.2,{r:lt}],[\"b\",168.7,144.2,215.8,192.6,215.8,252.2,{r:ot}],[\"b\",215.8,311.9,168.7,360,110.8,360,{r:lt}],[\"b\",59.5,360,16.8,322.4,7.6,272.4,{r:ft}],[\"b\",7.6,272.4,-44.1,8.8,122.2,.2],[\"b\",165.5,-2.1,193.8,21,212.1,56.4]]}]),7:ut(540,213,352,0,0,0,0,[{d:-1,v:[[\"m\",0,0,{x:0,r:lt}],[\"l\",213,0,{r:lt,f:1}],[\"l\",213,.1,{r:ft}],[\"l\",72.7,352,{y:.1,f:1}]]}]),8:ut(596,224,360,0,0,0,0,[{d:1,v:[[\"m\",112,180,{r:ot,p:1,f:1}],[\"b\",50.1,180,0,220.3,0,270,{r:ot}],[\"b\",0,319.7,50.1,360,112,360,{r:lt}],[\"b\",173.9,360,224,319.7,224,270,{r:ot}],[\"b\",224,220.3,173.9,180,112,180,{r:lt}],[\"b\",55.1,180,9,139.7,9,90,{r:ot}],[\"b\",9,40.3,55.1,0,112,0,{r:lt}],[\"b\",168.9,0,215,40.3,215,90,{r:ot}],[\"b\",215,139.7,168.9,180,112,180,{r:ot,p:1,f:1}]]}]),9:ut(596,215.8,360,0,-2,0,0,[{d:-1,v:[[\"m\",208.2,88,{r:ot,p:1,f:1}],[\"b\",209.4,94.5,210,101.2,210,108,{r:ot}],[\"b\",210,167.6,163,216,105,216,{r:lt}],[\"b\",47,216,-0,167.6,0,108,{r:ot}],[\"b\",0,48.4,47,-0,105,0,{r:lt}],[\"b\",156.3,0,199,37.8,208.2,87.8,{r:ft}],[\"b\",208.2,87.8,259.8,351.4,93.5,360],[\"b\",50.3,362.3,21.9,339.2,3.6,303.8,{f:1}]]}])},Xt={\" \":ut(336,0,0,0,0,0,0,[{d:1,v:[]}]),tofu:ut(672,232,352,0,0,0,0,[{d:-1,v:[[\"m\",0,0,{r:ot}],[\"l\",232,0,{r:ot,f:1}],[\"l\",232,352,{r:ot,f:1}],[\"l\",0,352,{r:ot,f:1}],[\"l\",0,0,{r:ot,p:1,f:1,c:1}]]},{d:1,v:[[\"m\",0,0,{r:ot,p:1,f:1}],[\"l\",232,352,{r:ft}]]}]),\"?\":ut(520,190.348,360,0,-5,0,0,[{d:1,v:[[\"a\",89.174,356]]},{d:-1,v:[[\"m\",0,87.8,{r:vt(0,87.8,12,-2.3,99.1,0,0,87.8,0)}],[\"b\",0,87.8,12,-2.3,99.1,0,{r:lt}],[\"b\",186.2,2.4,204.5,75.2,180.9,121.4],[\"b\",157.3,167.6,119.7,178.3,97.4,223.2],[\"b\",90.5,237.1,88.1,249.8,88,260.8,{r:ot,f:1}]]}]),\"¿\":ut(520,190.348,360,0,-5,0,0,[{d:1,v:[[\"a\",101.174,93]]},{d:-1,v:[[\"m\",190.3,361,{r:vt(190.3,361,178.3,451.1,91.2,448.8,190.3,361,0)}],[\"b\",190.3,361,178.3,451.1,91.2,448.8,{r:lt}],[\"b\",4.1,446.4,-14.2,373.6,9.4,327.4],[\"b\",33,281.2,70.6,270.5,92.9,225.6],[\"b\",99.8,211.7,102.2,199,102.3,188,{r:ot,f:1}]]}]),\"!\":ut(465,8,355,0,-5,0,0,[{d:1,v:[[\"a\",4,356]]},{d:-1,v:[[\"m\",4,0,{y:0}],[\"l\",4,260.8,{f:1}]]}]),\"¡\":ut(465,8,355,0,-5,0,0,[{d:1,v:[[\"a\",4,93]]},{d:-1,v:[[\"m\",4,188],[\"l\",4,448.8,{f:1,y:.3}]]}]),$:ut(568,224,360,0,0,0,0,[{d:-1,v:[[\"m\",212,51.3,{r:vt(0,295.4,17.6,332.1,58.3,360,110.3,360,0),f:1}],[\"b\",196.5,20.5,158.4,0,114.8,0],[\"b\",57.3,0,13.3,29.8,12,84.4],[\"b\",10.9,130.6,47.3,157.7,112.4,173.3],[\"b\",180.7,189.6,224.2,214.7,224,271],[\"b\",223.8,329.6,173.9,360,110.3,360],[\"b\",58.3,360,17.6,332.1,0,295.4,{f:1}]]},{d:-1,v:[[\"m\",112,-30,{y:0}],[\"l\",112,390,{y:0,f:1}]]}]),\"@\":ut(820,343.425,360,0,0,-30,-30,[{d:-1,v:[[\"m\",251.9,92.9,{r:pt(251.9,92.9,238.5,181.7)}],[\"l\",238.5,181.7,{r:ft}],[\"b\",227.8,236,194.7,267.2,143.7,259.2],[\"b\",99.1,252.2,87.7,208.5,90.1,177.5],[\"b\",92.5,148.4,118.1,91,183.3,99.1],[\"b\",251,107.5,238.5,181.7,238.5,181.7,{r:ft}],[\"l\",232.5,221.5],[\"b\",232.5,221.5,227.2,257.6,256,263.6],[\"b\",284.9,269.7,309,241.3,309,241.3,{r:ft}],[\"b\",309,241.3,343.4,209,343.4,146.7],[\"b\",343.4,84.3,297.4,3.5,178.6,.1],[\"b\",59.7,-3.4,-5.3,105.2,.3,203.4],[\"b\",6.1,303.7,93.2,354.5,175.5,359.5],[\"b\",175.5,359.5,246.5,364.9,302.7,339.8,{f:1}]]}]),\"#\":ut(760,314,352,0,0,0,0,[{d:-1,v:[[\"m\",117,0,{y:0,r:pt(117,0,47,352)}],[\"l\",47,352,{y:0,f:1}]]},{d:-1,v:[[\"m\",267,0,{y:0,r:pt(267,0,197,352)}],[\"l\",197,352,{y:0,f:1}]]},{d:-1,v:[[\"m\",24,117,{x:0,r:lt}],[\"l\",314,117,{x:0,f:1}]]},{d:-1,v:[[\"m\",0,235,{x:0,r:lt}],[\"l\",290,235,{x:0,f:1}]]}]),\"%\":ut(920,388,360,0,0,0,0,[{d:-1,v:[[\"m\",307.1,5.1,{x:0,y:0,r:pt(307.1,5.1,80.9,354.9)}],[\"l\",80.9,354.9,{x:0,y:0,f:1}]]},{d:-1,v:[[\"m\",146,73,{r:ot,p:1}],[\"b\",146,113.3,113.3,146,73,146,{r:lt}],[\"b\",32.7,146,0,113.3,0,73,{r:ot}],[\"b\",0,32.7,32.7,0,73,0,{r:lt}],[\"b\",113.3,0,146,32.7,146,73,{r:ot,c:1,f:1}]]},{d:-1,v:[[\"m\",388,287,{r:ot,p:1}],[\"b\",388,327.3,355.3,360,315,360,{r:lt}],[\"b\",274.7,360,242,327.3,242,287,{r:ot}],[\"b\",242,246.7,274.7,214,315,214,{r:lt}],[\"b\",355.3,214,388,246.7,388,287,{r:ot,c:1,f:1}]]}]),\"^\":ut(596,176,352,0,0,0,0,[{d:-1,v:[[\"m\",0,150,{r:pt(0,150,88-yt,0)}],[\"l\",88-yt,0,{r:pt(0,150,88-yt,0),f:1}],[\"l\",88+yt,0,{r:pt(88+yt,0,176,150),f:1,v:1}],[\"l\",176,150,{f:1}]]}]),\"·\":ut(231,8,355,0,0,0,0,[{d:1,v:[[\"a\",4,183.5]]}]),\"×\":ut(712,176.8,176.8,0,0,0,0,[{d:-1,v:[[\"m\",0,0,{x:0,y:0,r:pt(0,0,176.8,176.8)}],[\"l\",176.8,176.8,{x:0,y:0,f:1}]]},{d:-1,v:[[\"m\",176.8,0,{x:0,y:0,r:pt(176.8,0,0,176.88)}],[\"l\",0,176.8,{x:0,y:0,f:1}]]}]),\"÷\":ut(712,188,0,0,0,0,0,[{d:1,v:[[\"a\",94,110]]},{d:1,v:[[\"a\",94,-110]]},{d:-1,v:[[\"m\",0,0,{x:0,y:0,r:lt}],[\"l\",188,0,{x:0,y:0,f:1}]]}]),\"«\":ut(896,310,236,0,0,0,0,[{d:1,v:[[\"m\",150,236,{r:pt(150,236,0,118+yt),f:1}],[\"l\",0,118+yt,{r:pt(150,236,0,118+yt),f:1}],[\"l\",0,118-yt,{r:pt(0,118-yt,150,0),f:1,v:1}],[\"l\",150,0]]},{d:1,v:[[\"m\",310,236,{r:pt(310,236,160,118+yt),f:1}],[\"l\",160,118+yt,{r:pt(310,236,160,118+yt),f:1}],[\"l\",160,118-yt,{r:pt(160,118-yt,310,0),f:1,v:1}],[\"l\",310,0]]}]),\"»\":ut(896,310,236,0,0,0,0,[{d:1,v:[[\"m\",0,236,{r:pt(0,236,150,118+yt),f:1}],[\"l\",150,118+yt,{r:pt(0,236,0,118+yt),f:1}],[\"l\",150,118-yt,{r:pt(150,118-yt,0,0),f:1,v:1}],[\"l\",0,0]]},{d:1,v:[[\"m\",160,236,{r:pt(160,236,310,118+yt),f:1}],[\"l\",310,118+yt,{r:pt(0,236,0,118+yt),f:1}],[\"l\",310,118-yt,{r:pt(310,118-yt,160,0),f:1,v:1}],[\"l\",160,0]]}]),\"&\":ut(660,259.191,360,0,0,0,0,[{d:1,v:[[\"m\",257.9,355,{x:.5,y:.5,r:pt(257.9,355,52.8,135.3),f:1}],[\"l\",52.8,135.3],[\"b\",52.8,135.3,-2.2,79.5,46.6,26.7],[\"b\",46.6,26.7,68.1,0,101.8,0,{r:lt}],[\"b\",137.2,0,174.1,21.1,181.2,65.3],[\"b\",188.6,111.7,142.6,142.9,108.9,162.9],[\"b\",75.2,182.8,40.8,211.4,40.8,211.4,{r:ft}],[\"b\",35,217.1,-34.7,273.7,22.2,330.5],[\"b\",22.2,330.5,48.1,360,93.4,360,{r:lt}],[\"b\",138.6,360,212.2,322,259.2,200.5]]}]),\"*\":ut(558,183.597,212,0,0,0,0,[{d:-1,v:[[\"m\",91.8,0,{x:0,y:0}],[\"l\",91.8,212,{x:0,y:0,f:1}]]},{d:-1,v:[[\"m\",0,53,{x:0,y:0,r:pt(0,53,183.6,159)}],[\"l\",183.6,159,{x:0,y:0,f:1}]]},{d:-1,v:[[\"m\",0,159,{x:0,y:0,r:pt(0,159,183.6,53)}],[\"l\",183.6,53,{x:0,y:0,f:1}]]}]),\"+\":ut(712,250,250,0,0,0,0,[{d:-1,v:[[\"m\",125,0,{x:0,y:0}],[\"l\",125,250,{x:0,y:0,f:1}]]},{d:-1,v:[[\"m\",0,125,{x:0,y:0,r:lt}],[\"l\",250,125,{x:0,y:0,f:1}]]}]),\"=\":ut(712,216,86,0,0,0,0,[{d:-1,v:[[\"m\",0,0,{x:0,y:0,r:lt}],[\"l\",216,0,{x:0,y:0,f:1}]]},{d:-1,v:[[\"m\",0,86,{x:0,y:0,r:lt}],[\"l\",216,86,{x:0,y:0,f:1}]]}]),\"-\":ut(712,188,0,0,0,0,0,[{d:-1,v:[[\"m\",0,0,{x:0,y:0,r:lt}],[\"l\",188,0,{x:0,y:0,f:1}]]}]),_:ut(481,235,400,0,0,0,0,[{d:-1,v:[[\"m\",0,400,{x:0,y:0,r:lt}],[\"l\",235,400,{x:0,y:0,f:1}]]}]),\":\":ut(231,8,355,0,0,0,0,[{d:1,v:[[\"a\",4,183.5]]},{d:1,v:[[\"a\",4,353.5]]}]),\";\":ut(231,8,355,0,0,0,0,[{d:1,v:[[\"a\",4,183.5]]},{d:-1,v:[[\"m\",4,350,{x:0,y:2,r:pt(4,350,-6,430)}],[\"l\",-6,430,{x:0,y:.5,f:1}]]}]),\".\":ut(231,8,355,0,0,0,0,[{d:1,v:[[\"a\",4,353.5]]}]),\",\":ut(231,10,355,10,10,0,0,[{d:-1,v:[[\"m\",10,350,{x:0,y:2,r:pt(10,350,0,430)}],[\"l\",0,430,{x:0,y:.5,f:1}]]}]),\"'\":ut(173,0,360,0,0,0,0,[{d:-1,v:[[\"m\",0,0,{x:0,y:0}],[\"l\",0,80,{x:0,y:0,f:1}]]}]),'\"':ut(297,60,360,0,0,0,0,[{d:-1,v:[[\"m\",0,0,{x:-1.5,y:0}],[\"l\",0,80,{x:-1.5,y:0,f:1}]]},{d:-1,v:[[\"m\",60,0,{x:-1.5,y:0}],[\"l\",60,80,{x:-1.5,y:0,f:1}]]}]),\"~\":ut(731,199.391,47.063,0,0,0,0,[{d:1,v:[[\"m\",199.4,20.7,{x:0,y:0,r:vt(199.4,20.7,187.6,36.6,168.2,47.1,148.2,47.1,0),f:1}],[\"b\",187.6,36.6,168.2,47.1,148.2,47.1,{x:0,y:0,r:lt}],[\"b\",129.1,47.1,112.1,36.6,95.3,25.5,{x:0,y:0}],[\"b\",76.8,13.2,59.1,0,39.6,0,{x:0,y:0,r:lt}],[\"b\",22.3,0,10.9,8.9,0,20,{x:0,y:0}]]}]),\"(\":ut(365,107.865,360,0,0,0,0,[{d:1,v:[[\"m\",107.9,360,{y:.8,r:vt(107.9,360,39.7,321.1,0,259.8,0,182.9,0),f:1}],[\"b\",39.7,321.1,0,259.8,0,182.9,{y:.8,r:ot}],[\"b\",0,100.2,39.7,38.9,107.9,0,{y:.8}]]}]),\")\":ut(365,107.865,360,0,0,0,0,[{d:-1,v:[[\"m\",0,0,{y:.8,r:vt(0,0,68.2,38.9,107.9,100.2,107.9,177,0)}],[\"b\",68.2,38.9,107.9,100.2,107.9,177,{y:.8,r:ot}],[\"b\",107.9,259.8,68.2,321.1,0,360,{y:.8,f:1}]]}]),\"{\":ut(385,107.865,360,0,0,0,0,[{d:1,v:[[\"m\",94.5,360,{x:-.5,r:lt}],[\"l\",77.9,360,{x:-.5}],[\"b\",57.4,360,37,343,37,310.7,{x:-.5}],[\"l\",37,233.4,{x:-.5}],[\"b\",37,207.9,24.3,183.7,3.8,180.7,{x:-.5,r:lt}],[\"l\",3.8,179.8,{x:-.5,r:lt,p:1}],[\"b\",24.3,176.8,37,153.1,37,126.7,{x:-.5}],[\"l\",37,49.4,{x:-.5}],[\"b\",37,17.1,57.4,.1,77.9,.1,{x:-.5}],[\"l\",94.5,.1,{x:-.5}]]}]),\"}\":ut(385,107.865,360,0,0,0,0,[{d:-1,v:[[\"m\",13.4,.1,{x:-.5,r:lt}],[\"l\",30,.1,{x:-.5}],[\"b\",50.4,.1,70.8,17.1,70.8,49.4,{x:-.5}],[\"l\",70.8,126.7,{x:-.5}],[\"b\",70.8,153.1,83.6,176.8,104,179.8,{x:-.5,r:lt}],[\"l\",104,180.7,{x:-.5,r:lt,p:1}],[\"b\",83.6,183.7,70.8,207.9,70.8,233.4,{x:-.5}],[\"l\",70.8,310.7,{x:-.5}],[\"b\",70.8,343,50.4,360,30,360,{x:-.5}],[\"l\",13.4,360,{x:-.5}]]}]),\"[\":ut(365,66,352,0,0,0,0,[{d:-1,v:[[\"m\",66,0,{x:-1,r:lt}],[\"l\",0,0,{r:ot,f:1}],[\"l\",0,352,{r:ot,f:1}],[\"l\",66,352,{x:-1,f:1}]]}]),\"]\":ut(365,66,352,0,0,0,0,[{d:-1,v:[[\"m\",0,0,{x:-1,r:lt}],[\"l\",66,0,{r:ot,f:1}],[\"l\",66,352,{r:ot,f:1}],[\"l\",0,352,{x:-1,f:1}]]}]),\"<\":ut(423,90,352,0,0,0,0,[{d:-1,v:[[\"m\",90,0,{x:-1,y:.3,r:pt(90,0,0,176)}],[\"l\",0,176,{r:ot,f:1}],[\"l\",90,352,{x:-1,y:.3,f:1}]]}]),\">\":ut(423,90,352,0,0,0,0,[{d:-1,v:[[\"m\",0,0,{x:-1,y:.3,r:pt(0,0,90,176)}],[\"l\",90,176,{r:ot,f:1}],[\"l\",0,352,{x:-1,y:.3,f:1}]]}]),\"/\":ut(433,130,352,0,0,0,0,[{d:1,v:[[\"m\",0,352,{r:pt(0,352,130,0),f:1,y:0}],[\"l\",130,0,{y:0}]]}]),\"þ\":ut(600,232,338,-10,-2,-117,-117,[{d:-1,v:[[\"m\",0,-106,{y:0}],[\"l\",0,116,{r:ft}],[\"b\",0,180.1,51.9,232,116,232,{r:lt}],[\"b\",180.1,232,232,180.1,232,116,{r:ot}],[\"b\",232,51.9,180.1,0,116,0,{r:lt}],[\"b\",51.9,0,0,51.9,0,116,{r:ot}],[\"l\",0,338,{y:0,f:1}]]}]),\"Þ\":ut(520,162,352,-5,-70,0,0,[{d:-1,v:[[\"m\",0,0,{x:0,y:0,r:ot}],[\"l\",0,352,{x:0,y:0,r:ot,f:1}]]},{d:1,v:[[\"m\",0,281.6,{x:0,r:lt,f:1,p:1}],[\"l\",57,281.6,{x:-.5,r:lt,f:1}],[\"b\",115,281.6,162,233.4,162,175.4,{x:-.5,r:ot}],[\"b\",162,117.4,115,70.4,57,70.4,{x:-.5,r:lt}],[\"l\",0,70.4,{x:0,r:lt,f:1,p:1}]]}]),\"ß\":ut(596,209,352,-10,-10,0,0,[{d:1,v:[[\"m\",0,348.3,{r:ot,f:1,x:0,y:0}],[\"l\",0,104.3,{x:0}],[\"b\",0,46,36,0,98.9,0,{x:0}],[\"b\",145.2,0,191,27.9,191,81,{x:1}],[\"b\",191,110.7,165.6,131.8,151.8,140.9],[\"l\",140,148.8],[\"b\",120.6,161.7,110.8,172.8,110.8,185.5],[\"b\",110.8,206.7,131.6,213.8,140,217.5],[\"b\",190.6,241.1,211,262.7,211,289.6],[\"b\",211,329.5,174.8,352,142.5,352],[\"b\",97.3,352,75.2,319.7,72.3,289.3]]}])};function Bt(t,r){var e=t,i=-60+r;return[{d:-1,v:[[\"m\",-40+e,i,{x:0,y:0,r:pt(-40+e,i,0+e,60+i)}],[\"l\",0+e,60+i,{x:0,y:0,f:1}]]}]}function Ht(t,r){var e=t,i=-60+r;return[{d:-1,v:[[\"m\",40+e,i,{x:0,y:0,r:pt(40+e,i,0+e,60+i)}],[\"l\",0+e,60+i,{x:0,y:0,f:1}]]}]}function Kt(t,r){var e=-68+t,i=0+r;return[{d:-1,v:[[\"m\",0+e,50+i,{r:pt(0+e,50+i,68-yt+e,0+i),y:0,x:0}],[\"l\",68-yt+e,0+i,{r:pt(0+e,50+i,68-yt+e,0+i),y:0,x:0,f:1}],[\"l\",68+yt+e,0+i,{r:pt(68+yt+e,0+i,136+e,50+i),y:0,x:0,f:1,v:1}],[\"l\",136+e,50+i,{y:0,x:0,f:1}]]}]}function Qt(t,r){var e=t-76.24,i=r;return[{d:1,v:[[\"m\",159.52+e,16.56+i,{x:-1,y:-.2,r:vt(159.52+e,16.56+i,150.08+e,29.28+i,134.56+e,37.68+i,118.56+e,37.68+i,0),f:1}],[\"b\",150.08+e,29.28+i,134.56+e,37.68+i,118.56+e,37.68+i,{x:-1,y:-.2,r:lt}],[\"b\",103.28+e,37.68+i,89.68+e,29.28+i,76.24+e,20.4+i,{x:-1,y:-.2}],[\"b\",61.44+e,10.56+i,47.28+e,0+i,31.68+e,0+i,{x:-1,y:-.2,r:lt}],[\"b\",17.84+e,0+i,8.72+e,7.12+i,0+e,16+i,{x:-1,y:-.2}]]}]}function Ut(t,r){return[{d:1,v:[[\"a\",-50+t,r,{x:0,y:0}]]},{d:1,v:[[\"a\",50+t,r,{x:0,y:0}]]}]}function Vt(t,r){var e=t-57,i=r;return[{d:1,v:[[\"m\",112.7+e,0+i,{r:vt(112.7+e,0+i+e,10.1+i,110.1+e,19.3+i,105+e,27.7+i,0),x:0,y:0,f:1}],[\"b\",112.7+e,10.1+i,110.1+e,19.3+i,105+e,27.7+i,{x:0,y:0}],[\"b\",99.8+e,36.1+i,92.9+e,42.8+i,84.3+e,47.7+i,{x:0,y:0}],[\"b\",75.7+e,52.6+i,66.7+e,55+i,57.3+e,55+i,{x:0,y:0}],[\"b\",47.5+e,55+i,38.3+e,52.6+i,29.6+e,47.7+i,{x:0,y:0}],[\"b\",20.8+e,42.8+i,13.8+e,36.1+i,8.5+e,27.7+i,{x:0,y:0}],[\"b\",3.2+e,19.3+i,.5+e,10.1+i,.5+e,0+i,{x:0,y:0}]]}]}function Yt(t,r){var e=88+t,i=-116+r;return[{d:1,v:[[\"m\",116+e,58+i,{r:ot,p:1,f:1}],[\"b\",116+e,90.05+i,90.05+e,116+i,58+e,116+i,{r:lt}],[\"b\",25.95+e,116+i,0+e,90.05+i,0+e,58+i,{r:ot}],[\"b\",0+e,25.95+i,25.95+e,0+i,58+e,0+i,{r:lt}],[\"b\",90.05+e,0+i,116+e,25.95+i,116+e,58+i,{r:ot,c:1}]]}]}function Zt(t,r){return[{d:1,v:[[\"m\",t-40,r,{x:0,y:1,r:lt}],[\"l\",100+t,r,{x:0,y:1,f:1}]]}]}function $t(t,r){return[{d:-1,v:[[\"m\",t,r,{p:1}],[\"b\",9.3+t,11.6+r,15.6+t,27.1+r,15.6+t,40.9+r],[\"b\",15.6+t,83.3+r,-18.2+t,107.8+r,-59.5+t,107.8+r],[\"b\",-70.9+t,107.8+r,-82.9+t,106.2+r,-93.7+t,102.7+r,{x:.5,f:1}]]}]}function tr(t,r){return[{d:-1,v:[[\"m\",t,r,{p:1}],[\"b\",-19.6+t,14.8+r,-42.2+t,37.9+r,-42.2+t,64.1+r],[\"b\",-42.2+t,100.3+r,30.2-42.2+t,118.8+r,21.4+t,118.8+r],[\"b\",68.3-42.2+t,118.8+r,72.9-42.2+t,118.4+r,35.2+t,117.6+r,{x:.5,f:1}]]}]}function rr(t,r){return[{d:1,v:[[\"a\",t,r,{x:0,y:0}]]}]}function er(t,r){var e=-68+t,i=r;return[{d:-1,v:[[\"m\",0+e,i,{r:pt(0+e,i,68-yt+e,50+i),y:0,x:0}],[\"l\",68-yt+e,50+i,{r:pt(0+e,i,68-yt+e,50+i),y:0,x:0,f:1}],[\"l\",68+yt+e,50+i,{r:pt(68+yt+e,50+i,136+e,i),y:0,x:0,f:1,v:1}],[\"l\",136+e,i,{y:0,x:0,f:1}]]}]}function ir(t,r){return[{d:1,v:[[\"m\",t-50,r,{x:0,y:0}],[\"l\",t+50,r,{x:0,y:0,f:1}]]}]}var nr,ar,sr=[{d:1,v:[[\"m\",0,352,{y:0,f:1}],[\"l\",0,130,{y:-3}]]}],or=[{d:1,v:[[\"m\",-115.9,444,{x:.4,y:.63,r:vt(-115.9,444,12.6-115.9,454.4,29.6-115.9,460.2,-70,461.2,0),f:1}],[\"b\",12.6-115.9,454.4,29.6-115.9,460.2,-70,461.2,{x:.4,y:.63,r:lt}],[\"b\",84.5-115.9,463.5,0,435.1,0,396.4,{x:.4,y:.63,r:ot}],[\"l\",0,130,{y:-3}]]}],lr={\"Æ\":ut(996,426,352,0,0,0,0,[{d:-1,v:[[\"m\",426,0,{x:0,r:lt}],[\"l\",234,0,{x:.5,f:1,r:pt(234,0,0,352)}],[\"l\",0,352,{x:.5,y:.5,f:1}]]},{d:-1,v:[[\"m\",234,0,{x:.5,p:1}],[\"l\",234,352,{f:1,x:.5}],[\"l\",426,352,{f:1,x:0}]]},{d:-1,v:[[\"m\",76.4,237,{r:lt,p:1}],[\"l\",234,237,{f:1,r:lt,p:1}]]},{d:-1,v:[[\"m\",234,164,{r:lt,p:1,x:.5}],[\"l\",414,164,{f:1,x:0}]]}]),\"æ\":ut(1e3,457.5,232,0,0,-64,-64,[{d:-1,v:[[\"m\",232,8,{y:-3.4,r:ot}],[\"l\",232,116,{r:ft}],[\"b\",232,180.1,180.1,232,116,232,{r:lt}],[\"b\",51.9,232,0,180.1,0,116,{r:ot}],[\"b\",0,51.9,51.9,0,116,0,{r:lt}],[\"b\",180.1,0,232,51.9,232,116,{r:ot}],[\"l\",232,224,{y:-.1,r:ot,f:1}]]},{d:1,v:[[\"m\",443.6,182.9,{r:vt(443.6,182.9,423.1,213.2,388.1,233.1,348.5,233.1,0),f:1}],[\"b\",423.1,213.2,388.1,233.1,348.5,233.1,{r:lt}],[\"b\",284.4,233.1,232.5,181.2,232.5,117.1,{r:ot}],[\"b\",232.5,53,284.4,1.1,348.5,1.1,{r:lt}],[\"b\",408.4,1.1,456.9,47.2,457.5,106.1,{r:ot}],[\"l\",232.5,106.1,{r:ot,p:1}]]}]),\"À\":ut(620,290,352,0,0,0,0,JSON.parse(JSON.stringify(xt)).concat(Bt(145,-50))),\"Á\":ut(620,290,352,0,0,0,0,JSON.parse(JSON.stringify(xt)).concat(Ht(145,-50))),\"Â\":ut(620,290,352,0,0,0,0,JSON.parse(JSON.stringify(xt)).concat(Kt(145,-100))),\"Ã\":ut(620,290,352,0,0,0,0,JSON.parse(JSON.stringify(xt)).concat(Qt(145,-90))),\"Ä\":ut(620,290,352,0,0,0,0,JSON.parse(JSON.stringify(xt)).concat(Ut(145,-70))),\"Å\":ut(620,290,352,0,0,0,0,JSON.parse(JSON.stringify(xt)).concat(Yt(0,0))),\"Ă\":ut(620,290,352,0,0,0,0,JSON.parse(JSON.stringify(xt)).concat(Vt(145,-110))),\"Ą\":ut(620,290,352,0,0,0,0,JSON.parse(JSON.stringify(xt)).concat(tr(290,352))),\"à\":ut(600,232,232,10,2,-64,-64,JSON.parse(JSON.stringify(Tt)).concat(Bt(116,-60))),\"á\":ut(600,232,232,10,2,-64,-64,JSON.parse(JSON.stringify(Tt)).concat(Ht(116,-60))),\"â\":ut(600,232,232,10,2,-64,-64,JSON.parse(JSON.stringify(Tt)).concat(Kt(116,-110))),\"ã\":ut(600,232,232,10,2,-64,-64,JSON.parse(JSON.stringify(Tt)).concat(Qt(116,-100))),\"ä\":ut(600,232,232,10,2,-64,-64,JSON.parse(JSON.stringify(Tt)).concat(Ut(116,-80))),\"å\":ut(600,232,232,10,2,-64,-64,JSON.parse(JSON.stringify(Tt)).concat(Yt(-30,0))),\"ă\":ut(600,232,232,10,2,-64,-64,JSON.parse(JSON.stringify(Tt)).concat(Vt(116,-120))),\"ą\":ut(600,232,232,10,2,-64,-64,JSON.parse(JSON.stringify(Tt)).concat(tr(232,224))),\"Ć\":ut(700,293.1,360,0,0,0,0,JSON.parse(JSON.stringify(gt)).concat(Bt(180,-60))),\"Ĉ\":ut(700,293.1,360,0,0,0,0,JSON.parse(JSON.stringify(gt)).concat(Kt(180,-110))),\"Ċ\":ut(700,293.1,360,0,0,0,0,JSON.parse(JSON.stringify(gt)).concat(rr(180,-80))),\"Č\":ut(700,293.1,360,0,0,0,0,JSON.parse(JSON.stringify(gt)).concat(er(180,-110))),\"Ç\":ut(700,293.1,360,0,0,0,0,JSON.parse(JSON.stringify(gt)).concat($t(180,360))),\"ć\":ut(520,212.1,233.1,2,-10,-64,-64,JSON.parse(JSON.stringify(It)).concat(Bt(116.5,-68.9))),\"ĉ\":ut(520,212.1,233.1,2,-10,-64,-64,JSON.parse(JSON.stringify(It)).concat(Kt(116.5,-118.9))),\"ċ\":ut(520,212.1,233.1,2,-10,-64,-64,JSON.parse(JSON.stringify(It)).concat(rr(116.5,-88.9))),\"č\":ut(520,212.1,233.1,2,-10,-64,-64,JSON.parse(JSON.stringify(It)).concat(er(116.5,-118.9))),\"ç\":ut(520,212.1,233.1,2,-10,-64,-64,JSON.parse(JSON.stringify(It)).concat($t(116.5,233.1))),\"Đ\":ut(721,270,352,-10,-10,0,0,JSON.parse(JSON.stringify(bt)).concat(Zt(0,176))),\"Ď\":ut(721,270,352,-10,-10,0,0,JSON.parse(JSON.stringify(bt)).concat(er(100,-110))),\"ď\":ut(600,232,352,10,2,0,0,JSON.parse(JSON.stringify(Rt)).concat((nr=300,ar=0,[{d:-1,v:[[\"m\",nr,ar,{x:0,y:0}],[\"l\",nr,80+ar,{x:0,y:0,f:1}]]}]))),\"đ\":ut(600,232,352,10,2,0,0,JSON.parse(JSON.stringify(Rt)).concat(Zt(180,40))),\"È\":ut(520,192,352,-5,-80,0,0,JSON.parse(JSON.stringify(St)).concat(Bt(96,-60))),\"É\":ut(520,192,352,-5,-80,0,0,JSON.parse(JSON.stringify(St)).concat(Ht(96,-60))),\"Ê\":ut(520,192,352,-5,-80,0,0,JSON.parse(JSON.stringify(St)).concat(Kt(96,-110))),\"Ë\":ut(520,192,352,-5,-80,0,0,JSON.parse(JSON.stringify(St)).concat(Ut(96,-80))),\"Ē\":ut(520,192,352,-5,-80,0,0,JSON.parse(JSON.stringify(St)).concat(ir(96,-80))),\"Ĕ\":ut(520,192,352,-5,-80,0,0,JSON.parse(JSON.stringify(St)).concat(Vt(96,-120))),\"Ė\":ut(520,192,352,-5,-80,0,0,JSON.parse(JSON.stringify(St)).concat(rr(96,-80))),\"Ě\":ut(520,192,352,-5,-80,0,0,JSON.parse(JSON.stringify(St)).concat(er(96,-110))),\"è\":ut(570,225.5,233.1,0,0,-64,-64,JSON.parse(JSON.stringify(Ft)).concat(Bt(112,-60))),\"é\":ut(570,225.5,233.1,0,0,-64,-64,JSON.parse(JSON.stringify(Ft)).concat(Ht(112,-60))),\"ê\":ut(570,225.5,233.1,0,0,-64,-64,JSON.parse(JSON.stringify(Ft)).concat(Kt(112,-110))),\"ë\":ut(570,225.5,233.1,0,0,-64,-64,JSON.parse(JSON.stringify(Ft)).concat(Ut(112,-80))),\"ē\":ut(570,225.5,233.1,0,0,-64,-64,JSON.parse(JSON.stringify(Ft)).concat(ir(112,-80))),\"ĕ\":ut(570,225.5,233.1,0,0,-64,-64,JSON.parse(JSON.stringify(Ft)).concat(Vt(112,-120))),\"ė\":ut(570,225.5,233.1,0,0,-64,-64,JSON.parse(JSON.stringify(Ft)).concat(rr(112,-90))),\"ě\":ut(570,225.5,233.1,0,0,-64,-64,JSON.parse(JSON.stringify(Ft)).concat(er(112,-120))),\"Ĝ\":ut(840,352,360,0,0,0,0,JSON.parse(JSON.stringify(mt)).concat(Kt(180,-110))),\"Ğ\":ut(840,352,360,0,0,0,0,JSON.parse(JSON.stringify(mt)).concat(Vt(180,-120))),\"Ġ\":ut(840,352,360,0,0,0,0,JSON.parse(JSON.stringify(mt)).concat(rr(180,-80))),\"Ģ\":ut(840,352,360,0,0,0,0,JSON.parse(JSON.stringify(mt)).concat($t(180,360))),\"ĝ\":ut(600,232,338,10,2,-117,-117,JSON.parse(JSON.stringify(Mt)).concat(Kt(116,-118.9))),\"ğ\":ut(600,232,338,10,2,-117,-117,JSON.parse(JSON.stringify(Mt)).concat(Vt(116,-120))),\"ġ\":ut(600,232,338,10,2,-117,-117,JSON.parse(JSON.stringify(Mt)).concat(rr(116,-90))),\"ģ\":ut(600,232,338,10,2,-117,-117,JSON.parse(JSON.stringify(Mt)).concat(Ht(116,-70))),\"Ĥ\":ut(684,232,352,0,0,0,0,JSON.parse(JSON.stringify(Ot)).concat(Kt(116,-110))),\"ĥ\":ut(520,182,352,0,0,0,0,JSON.parse(JSON.stringify(jt)).concat(Kt(91,-110))),\"Ì\":ut(249,0,352,0,0,0,0,JSON.parse(JSON.stringify(Jt)).concat(Bt(0,-60))),\"Í\":ut(249,0,352,0,0,0,0,JSON.parse(JSON.stringify(Jt)).concat(Ht(0,-60))),\"Î\":ut(249,0,352,0,0,0,0,JSON.parse(JSON.stringify(Jt)).concat(Kt(0,-110))),\"Ï\":ut(249,0,352,0,0,0,0,JSON.parse(JSON.stringify(Jt)).concat(Ut(0,-80))),\"ì\":ut(200,0,352,0,0,0,0,JSON.parse(JSON.stringify(sr)).concat(Bt(0,70))),\"í\":ut(200,0,352,0,0,0,0,JSON.parse(JSON.stringify(sr)).concat(Ht(0,70))),\"î\":ut(200,0,352,0,0,0,0,JSON.parse(JSON.stringify(sr)).concat(Kt(0,10))),\"ï\":ut(200,0,352,0,0,0,0,JSON.parse(JSON.stringify(sr)).concat(Ut(0,50))),\"Ĵ\":ut(472,172.5,355.5,10,20,-2,-2,JSON.parse(JSON.stringify(Nt)).concat(Kt(172.5,-110))),\"ĵ\":ut(220,115.9,352,-60,-60,0,0,JSON.parse(JSON.stringify(or)).concat(Kt(0,20))),\"Ñ\":ut(721,250,352,0,0,0,0,JSON.parse(JSON.stringify(_t)).concat(Qt(125,-100))),\"ñ\":ut(520,182,352,0,0,0,0,JSON.parse(JSON.stringify(Gt)).concat(Qt(91,30))),\"Ò\":ut(850,360,360,0,0,0,0,JSON.parse(JSON.stringify(wt)).concat(Bt(180,-60))),\"Ó\":ut(850,360,360,0,0,0,0,JSON.parse(JSON.stringify(wt)).concat(Ht(180,-60))),\"Ô\":ut(850,360,360,0,0,0,0,JSON.parse(JSON.stringify(wt)).concat(Kt(180,-110))),\"Õ\":ut(850,360,360,0,0,0,0,JSON.parse(JSON.stringify(wt)).concat(Qt(180,-100))),\"Ö\":ut(850,360,360,0,0,0,0,JSON.parse(JSON.stringify(wt)).concat(Ut(180,-80))),\"Ø\":ut(850,360,360,0,0,0,0,JSON.parse(JSON.stringify(wt)).concat([{d:1,v:[[\"m\",0,360,{r:pt(0,360,360,0),f:1,x:0,y:1}],[\"l\",360,0,{x:0,y:1}]]}])),\"ò\":ut(580,232,232,0,0,-64,-64,JSON.parse(JSON.stringify(Ct)).concat(Bt(116,-60))),\"ó\":ut(580,232,232,0,0,-64,-64,JSON.parse(JSON.stringify(Ct)).concat(Ht(116,-60))),\"ô\":ut(580,232,232,0,0,-64,-64,JSON.parse(JSON.stringify(Ct)).concat(Kt(116,-110))),\"õ\":ut(580,232,232,0,0,-64,-64,JSON.parse(JSON.stringify(Ct)).concat(Qt(116,-100))),\"ö\":ut(580,232,232,0,0,-64,-64,JSON.parse(JSON.stringify(Ct)).concat(Ut(116,-80))),\"ø\":ut(580,232,232,0,0,-64,-64,JSON.parse(JSON.stringify(Ct)).concat([{d:1,v:[[\"m\",0,232,{r:pt(0,232,232,0),f:1,x:0,y:1}],[\"l\",232,0,{x:0,y:1}]]}])),\"Ŝ\":ut(560,224,360,0,0,0,0,JSON.parse(JSON.stringify(Pt)).concat(Kt(112.4,-110))),\"ŝ\":ut(400,143.808,231.12,0,0,-64,-64,JSON.parse(JSON.stringify(Lt)).concat(Kt(112.4*.642,-110))),\"Ş\":ut(560,224,360,0,0,0,0,JSON.parse(JSON.stringify(Pt)).concat($t(110.3,360))),\"ş\":ut(400,143.808,231.12,0,0,-64,-64,JSON.parse(JSON.stringify(Lt)).concat($t(70.8126,231.12))),\"Ù\":ut(712,250,355,0,0,-.5,-.5,JSON.parse(JSON.stringify(kt)).concat(Bt(125,-50))),\"Ú\":ut(712,250,355,0,0,-.5,-.5,JSON.parse(JSON.stringify(kt)).concat(Ht(125,-50))),\"Û\":ut(712,250,355,0,0,-.5,-.5,JSON.parse(JSON.stringify(kt)).concat(Kt(125,-100))),\"Ŭ\":ut(712,250,355,0,0,-.5,-.5,JSON.parse(JSON.stringify(kt)).concat(Vt(125,-110))),\"Ü\":ut(712,250,355,0,0,-.5,-.5,JSON.parse(JSON.stringify(kt)).concat(Ut(125,-70))),\"ù\":ut(520,182,352,0,0,0,0,JSON.parse(JSON.stringify(zt)).concat(Bt(91,70))),\"ú\":ut(520,182,352,0,0,0,0,JSON.parse(JSON.stringify(zt)).concat(Ht(91,70))),\"û\":ut(520,182,352,0,0,0,0,JSON.parse(JSON.stringify(zt)).concat(Kt(91,20))),\"ŭ\":ut(520,182,352,0,0,0,0,JSON.parse(JSON.stringify(zt)).concat(Vt(91,10))),\"ü\":ut(520,182,352,0,0,0,0,JSON.parse(JSON.stringify(zt)).concat(Ut(91,50))),\"Ý\":ut(673,270,352,0,0,0,0,JSON.parse(JSON.stringify(Wt)).concat(Ht(135,-60))),\"ý\":ut(500,225.5,331.5,10,10,-119,-119,JSON.parse(JSON.stringify(At)).concat(Ht(116.3,-60))),\"ÿ\":ut(500,225.5,331.5,10,10,-119,-119,JSON.parse(JSON.stringify(At)).concat(Ut(116.3,-90)))},fr=Object.assign({},Dt,Et,qt,Xt,lr);function yr(t){var r=fr[t]||fr[ct];return r.v=t,r}function cr(t,r,e,i){var n;return n=t.indexOf(\"\\n\")>0?t.split(\"\\n\"):t.indexOf(\"\\\\n\")>0?t.split(\"\\\\n\"):[t],0==e?function(t){var r,e=[],i=t.length;for(r=0;r<i;r++)e[r]=t[r].split(\"\");return e}(n):i?function(t,r,e){var i,n,a,s,o,l,f,y,c=0,h=0,u=[];for(a=t.length,n=0;n<a;n++){for(f=t[n],c=0,0,u[h]=[],o=f.length,s=0;s<o;s++)y=f[s],i=yr(y),l=v(i,r),c+=l.w,u[h].push(y),c>=e&&(h+=1,c=l.w,u[h]=[]);h+=1}var d=[];for(a=u.length,n=0;n<a;n++)(i=u[n]).length>0&&(\" \"==i[0]&&i.shift(),\" \"==i[i.length-1]&&i.pop(),i.length>0&&d.push(i));return d}(n,r,e):function(t,r,e){var i,n,a,s,o,l,f,y,c,h,u=0,d=0,p=0,x=[];for(y=t.length,o=0;o<y;o++){for(i=t[o].split(\" \"),x[p]=[],c=i.length,l=0;l<c;l++){for(d=0,n=i[l],h=n.length,f=0;f<h;f++)a=yr(n[f]),s=v(a,r),d+=s.w;a=yr(\" \"),s=v(a,r),d+=s.w,(u+=d)>e&&(u=d,x[p+=1]=[]),x[p].push(n)}p+=1,u=0}y=x.length;var g=[];for(o=0;o<y;o++)(a=x[o].join(\" \").split(\"\")).length>0&&g.push(a);return g}(n,r,e)}function hr(t,r){return{c:(t-r)/2,r:t-r,l:0}}function ur(t,r){for(var e=0;e<r.length;e++){var i=r[e];i.enumerable=i.enumerable||!1,i.configurable=!0,\"value\"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}var dr=function(){function t(){!function(t,r){if(!(t instanceof r))throw new TypeError(\"Cannot call a class as a function\")}(this,t),this.lineWidth_=1,this.drawing_=[],this.data_=null,this.paths_=null,this.lines_=null,this.rect_={x:0,y:0,w:0,h:0},this.align_=\"left\",this.scale_=1,this.fontRatio_=1}var r,e,i;return r=t,(e=[{key:\"position\",value:function(t,r){return(this.rect_.x!=t||this.rect_.y!=r)&&(this.rect_.x=t,this.rect_.y=r,this.setPosition(),!0)}},{key:\"setPosition\",value:function(){var t,r,e,i,n=this.data_.length;for(t=0;t<n;t++)(r=this.data_[t]).rect.x=r.originPos.x+this.rect_.x+(e=this.align_,i=r.alignGapX,\"center\"==e?i.c:\"right\"==e?i.r:i.l),r.rect.y=r.originPos.y+this.rect_.y}},{key:\"updateDrawingPaths\",value:function(){var t,r,e=this.data_.length;for(t=0;t<e;t++)(r=this.data_[t]).drawingPaths=m(rt(this,r,-1,!1),r)}},{key:\"updatePatternPaths\",value:function(t){var r,e,i=this.data_.length;for(r=0;r<i;r++)(e=this.data_[r]).rawPaths=rt(this,e,t,!0)}},{key:\"updateWavePaths\",value:function(t){var r,e,i=this.data_.length;for(r=0;r<i;r++)(e=this.data_[r]).rawWavePaths=rt(this,e,t,!1)}},{key:\"updateGuide\",value:function(){var t,r,e=this.data_.length;for(t=0;t<e;t++)(r=this.data_[t]).guide=Q(r.typo,this.scale),r.grid=U(r.typo,this.scale)}},{key:\"update\",value:function(t,r,e,i,n,a,u){var d=function(t){return(f-o)/(l-o)*(t-o)+o}(i),p=function(t){return 1/(y-o)*(t-o)}(d),b=function(t){return 54/(y-o)*(t-o)+4}(d),S=function(t){return t/s}(n),m=function(t,r){return 50*t*r}(a,S),O=function(t,r){return 50*t*r}(u,S),J=function(t){return(h-c)*t+c}(p);this.fontRatio_=J,this.scale_=S,this.lineWidth_=function(t,r){var e=t*r;return e<1&&(e=1),e}(d,S);var N,_,w,P,k,W,D,T,I,R=cr(t,S,r,e),M=R.length,j=M-1,G=0,C=0,L=0,z=0,A=0,E=0,q=[];for(N=0;N<M;N++){for(P=(w=(k=R[N]).length)-1,G=0,L=0,q[N]={tw:0,arr:[]},_=0;_<w;_++)G+=(T=v(W=yr(D=k[_]),S)).w,C=T.h,_<P&&(G+=m),N<j&&(C+=O),T.x=L,T.y=z,I={x:L,y:z},q[N].arr[_]={str:D,typo:W,rect:T,originPos:I,center:x(T.w,T.h,S),range:g(W,p,b)},L=G;z+=C,q[N].tw=G,A=Math.max(A,G),E+=C}this.rect_.w=A,this.rect_.h=E,this.drawing_=[];for(var X,B,H=[],K=0,Q=q;K<Q.length;K++){var U=Q[K];X=hr(A,U.tw);var V=!0,Y=!1,Z=void 0;try{for(var $,tt=U.arr[Symbol.iterator]();!(V=($=tt.next()).done);V=!0){var rt=$.value;rt.alignGapX=X,rt.pointsLength=F(rt,this),H.push(rt),B={value:1},this.drawing_.push(B),rt.drawing=B;var et=!0,it=!1,nt=void 0;try{for(var at,st=rt.typo.p[Symbol.iterator]();!(et=(at=st.next()).done);et=!0){var ot=at.value;ot.cv=[];var lt=!0,ft=!1,yt=void 0;try{for(var ct,ht=ot.v[Symbol.iterator]();!(lt=(ct=ht.next()).done);lt=!0){var ut=ct.value;ot.cv.push(ut.convert(rt,this))}}catch(t){ft=!0,yt=t}finally{try{lt||null==ht.return||ht.return()}finally{if(ft)throw yt}}}}catch(t){it=!0,nt=t}finally{try{et||null==st.return||st.return()}finally{if(it)throw nt}}}}catch(t){Y=!0,Z=t}finally{try{V||null==tt.return||tt.return()}finally{if(Y)throw Z}}}this.data_=H,this.setPosition()}},{key:\"updatePathsForRect\",value:function(){var t,r,e=this.data_.length,i=[];for(t=0;t<e;t++)(r=this.data_[t]).rawWavePaths&&(r.wavePaths=m(r.rawWavePaths,r)),r.rawPaths&&(r.paths=m(r.rawPaths,r),Array.prototype.push.apply(i,r.paths));this.paths_=i}},{key:\"updateLinesForRect\",value:function(){var t,r,e=this.data_.length;for(t=0;t<e;t++)(r=this.data_[t]).lines=S(r)}},{key:\"reset\",value:function(){this.lineWidth_=1,this.drawing_=[],this.data_=null,this.paths_=null,this.lines_=null,this.rect_={x:0,y:0,w:0,h:0},this.align_=\"left\",this.scale_=1,this.fontRatio_=1}},{key:\"data\",get:function(){return this.data_}},{key:\"paths\",get:function(){return this.paths_}},{key:\"lines\",get:function(){return this.lines_},set:function(t){this.lines_=t}},{key:\"lineWidth\",get:function(){return this.lineWidth_}},{key:\"fontRatio\",get:function(){return this.fontRatio_}},{key:\"scale\",get:function(){return this.scale_}},{key:\"rect\",get:function(){return this.rect_}},{key:\"drawing\",get:function(){return this.drawing_}},{key:\"align\",set:function(t){this.align_!=t&&(this.align_=t,this.setPosition())},get:function(){return this.align_}}])&&ur(r.prototype,e),i&&ur(r,i),t}();function pr(t){return(pr=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&\"function\"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?\"symbol\":typeof t})(t)}function vr(t,r){for(var e=0;e<r.length;e++){var i=r[e];i.enumerable=i.enumerable||!1,i.configurable=!0,\"value\"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}function xr(t,r){return!r||\"object\"!==pr(r)&&\"function\"!=typeof r?function(t){if(void 0===t)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return t}(t):r}function gr(t,r,e){return(gr=\"undefined\"!=typeof Reflect&&Reflect.get?Reflect.get:function(t,r,e){var i=function(t,r){for(;!Object.prototype.hasOwnProperty.call(t,r)&&null!==(t=br(t)););return t}(t,r);if(i){var n=Object.getOwnPropertyDescriptor(i,r);return n.get?n.get.call(e):n.value}})(t,r,e||t)}function br(t){return(br=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function Sr(t,r){return(Sr=Object.setPrototypeOf||function(t,r){return t.__proto__=r,t})(t,r)}e.d(r,\"default\",function(){return mr});var mr=function(t){function r(){var t,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},i=e.text,n=void 0===i?\"\":i,a=e.size,s=void 0===a?500:a,l=e.weight,f=void 0===l?o:l,y=e.color,c=void 0===y?[\"#000000\"]:y,h=e.colorful,u=void 0===h?[\"#c5d73f\",\"#9d529c\",\"#49a9db\",\"#fec330\",\"#5eb96e\",\"#fc5356\",\"#f38f31\"]:h,d=e.tracking,p=void 0===d?0:d,v=e.leading,x=void 0===v?0:v,g=e.align,b=void 0===g?\"left\":g,S=e.pathGap,m=void 0===S?.5:S,O=e.amplitude,J=void 0===O?.5:O,N=e.width,_=void 0===N?0:N,w=e.breakWord,P=void 0!==w&&w,k=e.fps,W=void 0===k?30:k,D=e.isPath,T=void 0!==D&&D,I=e.isWave,R=void 0!==I&&I;return function(t,r){if(!(t instanceof r))throw new TypeError(\"Cannot call a class as a function\")}(this,r),(t=xr(this,br(r).call(this))).size_=s,t.weight_=f,t.color_=c,t.colorful_=function(t){for(var r,e,i=t.slice(),n=i.length,a=n;a--;)r=Math.random()*n|0,e=i[a],i[a]=i[r],i[r]=e;return i}(u),t.tracking_=p,t.leading_=x,t.pathGap_=m,t.amplitude_=J,t.width_=_,t.breakWord_=P,t.fps_=W,t.fpsTime_=1e3/t.fps_,t.isPath_=T,t.isWave_=R,t.model=new dr,t.str_=null,t.time_=null,t.isFps_=!1,t.isForceRander_=!1,t.updateID_=0,t.dPathsID_=null,t.pPathsID_=null,t.wPathsID_=null,t.guideID_=null,t.text=n,t.model.align=b,t}var e,i,n;return function(t,r){if(\"function\"!=typeof r&&null!==r)throw new TypeError(\"Super expression must either be null or a function\");t.prototype=Object.create(r&&r.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),r&&Sr(t,r)}(r,a),e=r,(i=[{key:\"on\",value:function(t,e){gr(br(r.prototype),\"on\",this).call(this,t,e),this.update()}},{key:\"off\",value:function(t,e){gr(br(r.prototype),\"off\",this).call(this,t,e)}},{key:\"position\",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;this.model.position(t,r)&&(this.updateID_++,this.updateSignal())}},{key:\"update\",value:function(){this.updateID_++,this.model.update(this.str_,this.width_,this.breakWord_,this.weight_,this.size_,this.tracking_,this.leading_),this.isPath_||this.isWave_?(this.updatePatternPaths(),this.updateWavePaths()):this.updateSignal()}},{key:\"updateGuide\",value:function(){this.guideID_!=this.updateID_&&(this.guideID_=this.updateID_,this.model.updateGuide())}},{key:\"updateDrawingPaths\",value:function(){this.dPathsID_!=this.updateID_&&(this.dPathsID_=this.updateID_,this.model.updateDrawingPaths())}},{key:\"updatePatternPaths\",value:function(t){this.isPath_&&(t||this.pPathsID_!=this.updateID_)&&(this.pPathsID_=this.updateID_,this.model.updatePatternPaths(this.pathGap_),this.isForceRander_=!0,this.updateSignal())}},{key:\"updateWavePaths\",value:function(t){this.isWave_&&(t||this.wPathsID_!=this.updateID_)&&(this.wPathsID_=this.updateID_,this.model.updateWavePaths(this.pathGap_),this.isForceRander_=!0,this.updateSignal())}},{key:\"updateSignal\",value:function(){this.model.updateLinesForRect(),this.model.updatePathsForRect(),this.dispatch(\"update\",this.model)}},{key:\"reset\",value:function(){this.size_=500,this.weight_=o,this.color_=[\"#000000\"],this.tracking_=0,this.leading_=0,this.pathGap_=.5,this.amplitude_=.5,this.width_=0,this.breakWord_=!1,this.fps_=30,this.fpsTime_=1e3/this.fps_,this.isPath_=!1,this.isWave_=!1,this.str_=null,this.time_=null,this.isFps_=!1,this.isForceRander_=!1,this.updateID_=0,this.dPathsID_=null,this.pPathsID_=null,this.wPathsID_=null,this.guideID_=null,this.model.reset()}},{key:\"dispose\",value:function(){this.reset(),this.model=null}},{key:\"drawPixi\",value:function(t){var r,e,i,n=this.model.data.length;for(r=0;r<n;r++)e=this.model.data[r],i=K(r,0,this.color_),X(t,e,this.lineWidth,i)}},{key:\"draw\",value:function(t){t.lineWidth=this.lineWidth;var r,e,i=this.model.data.length;for(r=0;r<i;r++)R(t,r,e=this.model.data[r],this.color_),O(t,e)}},{key:\"drawColorful\",value:function(t){t.lineWidth=this.lineWidth,function(t,r,e){z=-1,L=(P=e).length;var i,n,a,s,o,l,f,y,c,h,u=r.data.length;for(i=0;i<u;i++)for(y=(n=r.data[i]).pointsLength.max,h=0,s=n.lines.length,f=null,a=0;a<s;a++)\"a\"==(l=(o=n.lines[a]).pos).type?(E(t),t.beginPath(),t.arc(l.x,l.y,l.radius*n.drawing.value,0,p),t.fill(),t.closePath()):\"m\"==l.type?f=l:\"l\"==l.type?((c=C(f.x,f.y,l.x,l.y))/r.scale>A&&(E(t),t.beginPath(),f&&t.moveTo(f.x,f.y),t.lineTo(l.x,l.y),h+=q(t,o,c,y,n,h)),f=l):\"b\"==l.type&&((c=j(f.x,f.y,l.x,l.y,l.x2,l.y2,l.x3,l.y3))/r.scale>A&&(E(t),t.beginPath(),f&&t.moveTo(f.x,f.y),t.bezierCurveTo(l.x,l.y,l.x2,l.y2,l.x3,l.y3),h+=q(t,o,c,y,n,h)),f={x:l.x3,y:l.y3})}(t,this.model,this.colorful_)}},{key:\"wave\",value:function(t,r){t.lineWidth=this.lineWidth,r&&(this.time_||(this.time_=r),r-this.time_>this.fpsTime_||this.isForceRander_?(this.time_=r,this.isFps_=!0):this.isFps_=!1),this.isForceRander_=!1;var e,i,n=this.model.data.length;for(e=0;e<n;e++)R(t,e,i=this.model.data[e],this.color_),T(t,i,this.model.scale,this.amplitude_,this.weight_,this.isFps_)}},{key:\"pattern\",value:function(t,r,e){var i,n=r*this.model.scale,a=e*this.model.scale,s=this.model.data.length;for(i=0;i<s;i++)I(t,this.model.data[i],n,a)}},{key:\"grid\",value:function(t){this.updateGuide();var r,e=this.model.data.length;for(r=0;r<e;r++)w(t,this.model.data[r])}},{key:\"point\",value:function(t){var r,e=this.model.data.length;for(r=0;r<e;r++)J(t,this.model.data[r])}},{key:\"box\",value:function(t){t.lineWidth=1,t.beginPath(),t.strokeStyle=\"#0b90dc\",t.rect(this.model.rect.x,this.model.rect.y,this.model.rect.w,this.model.rect.h),t.stroke()}},{key:\"text\",get:function(){return this.str_},set:function(t){this.str_!=t&&(this.str_=t,this.update())}},{key:\"size\",get:function(){return this.size_},set:function(t){this.size_!=t&&(this.size_=t,this.update(),this.isForceRander_=!0)}},{key:\"weight\",get:function(){return this.weight_},set:function(t){t<o?t=o:t>l&&(t=l),this.weight_!=t&&(this.weight_=t,this.update(),this.isForceRander_=!0)}},{key:\"color\",get:function(){return this.color_},set:function(t){this.color_!=t&&(this.color_=t)}},{key:\"tracking\",get:function(){return this.tracking_},set:function(t){this.tracking_!=t&&(this.tracking_=t,this.update(),this.isForceRander_=!0)}},{key:\"leading\",get:function(){return this.leading_},set:function(t){this.leading_!=t&&(this.leading_=t,this.update(),this.isForceRander_=!0)}},{key:\"align\",get:function(){return this.model.align},set:function(t){this.model.align!=t&&(this.model.align=t,this.updateID_++,this.updateSignal())}},{key:\"pathGap\",get:function(){return this.pathGap_},set:function(t){this.pathGap_!=t&&(this.pathGap_=t,this.updatePatternPaths(!0),this.updateWavePaths(!0),this.isForceRander_=!0)}},{key:\"amplitude\",get:function(){return this.amplitude_},set:function(t){this.amplitude_=t}},{key:\"rect\",get:function(){return this.model.rect}},{key:\"maxWidth\",set:function(t){this.width_!=t&&(this.width_=t,this.update())},get:function(){return this.width_}},{key:\"breakWord\",set:function(t){this.breakWord_!=t&&(this.breakWord_=t,this.update())},get:function(){return this.breakWord_}},{key:\"isPath\",get:function(){return this.isPath_},set:function(t){this.isPath_=t,this.updatePatternPaths(!0)}},{key:\"isWave\",get:function(){return this.isWave_},set:function(t){this.isWave_=t,this.updateWavePaths(!0)}},{key:\"fps\",get:function(){return this.fps_},set:function(t){this.fps_=t,this.fpsTime_=1e3/this.fps_}},{key:\"lineWidth\",get:function(){return this.model.lineWidth}},{key:\"scale\",get:function(){return this.model.scale}},{key:\"drawing\",get:function(){return this.model.drawing}},{key:\"data\",get:function(){return this.model.data}},{key:\"paths\",get:function(){return this.model.paths}},{key:\"drawingPaths\",get:function(){return this.model.drawingPaths}},{key:\"wavePaths\",get:function(){return this.model.wavePaths}}])&&vr(e.prototype,i),n&&vr(e,n),r}()}]);"
  },
  {
    "path": "source/styles/cold-stone.css",
    "content": ":root {\n  --text-black: #303133;\n  --text-gray: #909399;\n  --text-link: #1e87f0;\n  --bg-white: #f2f3f8;\n  --bg-dark: #474444;\n  --bg-darken: #3d3b3b;\n  --wrapper-width: 920px;\n  --menu-fore-color: #53586a;\n  --shadow: 0 0.4rem 0.8rem -0.1rem rgba(0, 32, 128, 0.1), 0 0 0 1px #f0f2f7;\n  --light-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);\n  --dark-shadow: 0 14px 25px rgba(255, 255, 255, 0.16);\n}\n\n::-moz-selection {\n  color: #fff;\n  background: var(--text-link);\n  text-shadow: none;\n}\n\nhtml,\nbody {\n  min-height: 100vh;\n  scroll-behavior: smooth;\n  transition: all ease 0.3s;\n  background-color: var(--bg-white);\n  background-image: linear-gradient(\n      0deg,\n      transparent 24%,\n      rgba(201, 195, 195, 0.329) 25%,\n      rgba(209, 201, 201, 0.05) 26%,\n      transparent 27%,\n      transparent 74%,\n      rgba(209, 204, 204, 0.185) 75%,\n      rgba(180, 176, 176, 0.05) 76%,\n      transparent 77%,\n      transparent\n    ),\n    linear-gradient(\n      90deg,\n      transparent 24%,\n      rgba(204, 196, 196, 0.226) 25%,\n      rgba(172, 165, 165, 0.05) 26%,\n      transparent 27%,\n      transparent 74%,\n      rgba(209, 204, 204, 0.185) 75%,\n      rgba(180, 176, 176, 0.05) 76%,\n      transparent 77%,\n      transparent\n    );\n  background-size: 50px 50px;\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  color: var(--text-black);\n  overflow-x: hidden;\n}\n\nh1 {\n  font-size: 1.8rem;\n}\n\nh2 {\n  font-size: 1.2rem;\n}\n\nh3 {\n  font-size: 1rem;\n}\n\na {\n  color: inherit;\n  text-decoration: none;\n  transition: all 0.1s ease;\n}\n\ntable {\n  position: relative;\n  table-layout: fixed;\n  width: 100%;\n  margin: 0;\n  box-sizing: border-box;\n  font-weight: 400;\n  word-wrap: break-word;\n  word-break: normal;\n  border-spacing: 0;\n  cursor: default;\n  border: 1px solid #d9d9d9;\n}\n\ntbody {\n  margin: 0;\n}\n\ntr:nth-child(2n) {\n  background-color: #f9f9f9;\n}\n\ntr th,\ntr td {\n  min-width: 90px;\n  font-size: 14px;\n  white-space: normal;\n  word-wrap: break-word;\n  border: 1px solid #d9d9d9;\n  vertical-align: top;\n  padding: 4px 8px;\n  cursor: default;\n}\n\n.hide {\n  display: none;\n}\n\n.wrapper {\n  width: 96%;\n  margin: 0 auto;\n  max-width: var(--wrapper-width);\n}\n\n.header {\n  margin-bottom: 1rem;\n  background-color: #ffffff;\n}\n\n.header-content {\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n}\n\n.header .title {\n  font-size: 1.2rem;\n  font-weight: normal;\n  margin: 1rem 0;\n}\n\n.nav-list {\n  display: flex;\n  list-style: none;\n  padding: 0;\n}\n\n.nav-list-item.active {\n  font-weight: bold;\n}\n\n.nav-list-item:hover {\n  font-weight: bold;\n}\n\n.nav-list-link {\n  font-size: 0.8rem;\n  padding-left: 1rem;\n}\n\n@media screen and (max-width: 768px) {\n  .header .title {\n    font-size: 0.9rem;\n  }\n\n  .nav-list-link {\n    font-size: 0.7rem;\n  }\n}\n\n.main {\n  flex: 1;\n}\n\n.card {\n  border-radius: 2px;\n  margin-bottom: 1rem;\n  padding: 1rem;\n  background-color: #ffffff;\n}\n\n.card-hover:hover {\n  box-shadow: var(--light-shadow);\n}\n\n.post-anchor {\n  display: block;\n  padding-bottom: 0.5rem;\n}\n\n.list-unstyled {\n  list-style: none;\n  padding: 0;\n  margin: 0;\n}\n\n@media screen and (max-width: 768px) {\n  .post-title {\n    font-size: 1rem;\n  }\n\n  .list-unstyled {\n    font-size: 0.9rem;\n  }\n}\n\n.pager {\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n  padding: 0.5rem 0;\n}\n\n/* img */\nimg {\n  width: 100%;\n  line-height: 0;\n}\n\nimg::-moz-selection {\n  color: #fff;\n  background: transparent;\n}\n\nimg::selection {\n  color: #fff;\n  background: transparent;\n}\n\n/* article */\n.article {\n  margin-bottom: 1rem;\n  padding: 2rem 2% 1rem 2%;\n  border-radius: 0.25rem;\n  background-color: #ffffff;\n}\n\n.article-header {\n  margin-bottom: 40px;\n}\n\n.article-title {\n  margin-top: 0;\n}\n\n.article-meta {\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n  font-size: 0.9rem;\n}\n\n.meta-info {\n  flex: 1;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n  overflow: hidden;\n}\n\n.meta-info span {\n  padding-right: 1em;\n}\n\n.meta-link {\n  margin-left: 1rem;\n}\n\n@media screen and (max-width: 768px) {\n  .meta-info {\n    overflow: auto;\n    text-overflow: unset;\n  }\n  .meta-info span {\n    padding-right: 6px;\n  }\n  .meta-link {\n    margin-left: 6px;\n  }\n}\n\n.article-content a {\n  color: #08c;\n  text-decoration: none;\n}\n\n.article-toc {\n  position: fixed;\n  top: calc(80px + 1rem);\n  left: calc(50% + (var(--wrapper-width) / 2) + 1rem);\n  min-width: 200px;\n  font-size: 0.9rem;\n  transition: all ease 0.3s;\n}\n\n.article-toc.fade {\n  opacity: 0.8;\n}\n\n.article-toc ol {\n  margin: 0;\n  padding-left: 1em;\n}\n\n.article-toc .home-link {\n  padding: 0.5rem 1rem;\n  margin-top: -0.5rem;\n}\n\n@media screen and (max-width: 768px) {\n  .article-meta {\n    font-size: 0.8rem;\n  }\n  .article-toc {\n    display: none;\n  }\n}\n\n/* tags */\n\n.tags {\n  display: flex;\n  align-items: center;\n  flex-wrap: wrap;\n  margin-bottom: 1rem;\n}\n\n.tag-item {\n  padding: 2px 6px;\n  margin-right: 10px;\n  margin-bottom: 6px;\n  font-style: italic;\n  background-color: #ffffff;\n}\n\n.tag-list {\n  margin: 0;\n}\n\n.tag-post-title {\n  display: block;\n}\n\n.tag-post-title p {\n  margin: 0.5rem 0;\n}\n\n.tag-post-title:last-of-type p {\n  margin-bottom: 0;\n}\n\n/* archives */\n.archive-tag-list,\n.category-tag-list {\n  list-style: none;\n  padding: 0;\n  margin: 0;\n}\n\n.archive-tag-list-item,\n.category-tag-list-item {\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n}\n.archive-tag-list-link,\n.category-tag-list-link {\n  flex: 1;\n  padding-right: 12px;\n  font-size: 0.8rem;\n}\n\n.archive-tag-list-count,\n.category-tag-list-count {\n  position: relative;\n  width: 26px;\n  font-size: 0.8rem;\n}\n\n.archive-tag-list-count::after,\n.category-tag-list-count::after {\n  position: absolute;\n  right: 0;\n  top: 0;\n  content: \"篇\";\n}\n\n.archives {\n  padding: 0;\n}\n\n.archives li {\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n}\n\n/* Hover underline animation */\n.hover-underline-animation {\n  display: inline-block;\n  position: relative;\n}\n\n.hover-underline-animation::after {\n  content: \"\";\n  position: absolute;\n  width: 100%;\n  transform: scaleX(0);\n  height: 1px;\n  bottom: 0;\n  left: 0;\n  background-color: var(--text-link);\n  transform-origin: bottom right;\n  transition: transform 0.25s ease-out;\n}\n\n.hover-underline-animation:hover::after {\n  transform: scaleX(1);\n  transform-origin: bottom left;\n}\n\n/* loader */\n.loader {\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  min-height: 300px;\n}\n\n.loader svg {\n  width: 3.75em;\n  animation: 1.5s spin ease infinite;\n}\n\n.loader .ring {\n  fill: none;\n  stroke: var(--text-gray);\n  stroke-width: 1;\n}\n\n.loader .ball {\n  fill: var(--text-gray);\n  stroke: none;\n}\n\n@keyframes spin {\n  to {\n    transform: rotate(360deg);\n  }\n}\n\n/* comment */\n/* .comment {\n  min-height: 300px;\n} */\n\n/* search-form */\n.translate-x {\n  transform: translateX(calc(200px + 1rem));\n}\n.search-form {\n  border-bottom: 1px solid var(--text-gray);\n}\n\n.search-form-input {\n  width: 100%;\n  border: none;\n  outline: none;\n  height: 2rem;\n  padding-left: 7px;\n  border-radius: 2px;\n}\n\n/* project-list */\n.project-link {\n  display: block;\n}\n\n.link-disabled {\n  pointer-events: none;\n  color: var(--text-gray);\n}\n\n/* animate */\n.slide-in-right {\n  animation: slideInRight 0.3s linear both;\n}\n\n.animate-list__title {\n  margin-top: 0;\n  max-width: 100%;\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n@media screen and (max-width: 768px) {\n  .animate-list__title {\n    font-size: 1rem;\n  }\n}\n\n.animate-list__desc {\n  display: flex;\n  align-items: center;\n  margin: 0;\n  font-size: 0.9em;\n}\n\n.animate-list li:nth-of-type(1) {\n  animation-delay: 0.1s;\n}\n\n.animate-list li:nth-of-type(2) {\n  animation-delay: 0.15s;\n}\n\n.animate-list li:nth-of-type(3) {\n  animation-delay: 0.2s;\n}\n\n.animate-list li:nth-of-type(4) {\n  animation-delay: 0.25s;\n}\n\n.animate-list li:nth-of-type(5) {\n  animation-delay: 0.3s;\n}\n\n.animate-list li:nth-of-type(6) {\n  animation-delay: 0.35s;\n}\n\n.animate-list li:nth-of-type(7) {\n  animation-delay: 0.4s;\n}\n\n.animate-list li:nth-of-type(8) {\n  animation-delay: 0.45s;\n}\n\n@keyframes slideInRight {\n  from {\n    transform: translate3d(1%, 0, 0);\n  }\n\n  to {\n    transform: translate3d(0, 0, 0);\n  }\n}\n\n/* paginator */\n.paginator {\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n  padding: 0.5rem 0;\n}\n\n.paginator .page-number {\n  width: 2rem;\n  display: inline-block;\n  text-align: center;\n}\n.page-number.current {\n  pointer-events: none;\n  color: var(--text-gray);\n}\n\n.paginator .extend {\n  flex: 1;\n}\n\n.paginator .extend.next {\n  text-align: right;\n}\n\n.tag-name,\n.category-name,\n.archive-name {\n  font-weight: 600;\n  margin-top: 0;\n}\n\n.archive-date {\n  font-style: italic;\n  padding-right: 0.5rem;\n}\n\n/* footer */\n.footer {\n  position: relative;\n  margin-top: 1rem;\n  /* background-color: #fff; */\n}\n\n.footer-content {\n  position: absolute;\n  top: 20%;\n  left: 50%;\n  transform: translate(-50%, -50%);\n  display: flex;\n  align-items: center;\n}\n\n.footer .theme-link {\n  text-decoration: underline;\n}\n\n.footer .footer-toggle {\n  position: relative;\n  margin-right: 1rem;\n  width: 40px;\n  height: 24px;\n}\n\n.footer-toggle .menu-button {\n  position: absolute;\n  padding: 0;\n  cursor: pointer;\n  transition: all 0.3s ease;\n  background: transparent;\n  color: inherit;\n  visibility: hidden;\n  opacity: 0;\n  text-align: center;\n  border: none;\n  outline: none;\n}\n\n.menu-button.show {\n  visibility: visible;\n  opacity: 1;\n}\n\n.post-info {\n  flex: 1;\n}\n\n.meta-tag {\n  padding: 0 3px;\n}\n\n.read-more {\n  margin-left: 1em;\n}\n\n/* back-to-top */\n.back-to-top {\n  position: fixed;\n  bottom: 5vw;\n  left: calc(50% + (var(--wrapper-width) / 2) + 1rem);\n  visibility: hidden;\n  opacity: 0;\n  transition: all linear 0.3s;\n  padding: 8px 12px;\n  cursor: pointer;\n}\n\n.back-to-top.show {\n  visibility: visible;\n  opacity: 1;\n}\n\n/* archive-list */\n.archive-list {\n  padding-left: 1em;\n}\n\n/* index-content */\n.index-content {\n  display: flex;\n  justify-content: space-between;\n  align-items: flex-start;\n}\n\n.index-post-list {\n  flex: 1;\n  margin-right: 1rem;\n}\n.index-post-link {\n  display: block;\n}\n\n.index-aside {\n  width: 200px;\n  min-width: 200px;\n}\n\n@media screen and (max-width: 768px) {\n  .index-post-list {\n    width: 100%;\n    margin: 0;\n  }\n\n  .index-aside {\n    display: none;\n  }\n}\n\n/* about */\n.about {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: 311px;\n}\n\n.about-links {\n  margin: 0;\n}\n\n.avatar {\n  width: 180px;\n  text-align: center;\n}\n\n.avatar-img {\n  border-radius: 50%;\n}\n\n.author {\n  padding: 0;\n}\n\n.author .info {\n  padding: 1rem;\n}\n\n.username {\n  margin-top: 1rem;\n  margin-bottom: 0;\n  font-weight: normal;\n}\n\n.subtitle {\n  margin: 6px 0;\n  font-size: 0.8rem;\n}\n\n.about-link {\n  font-size: 0.8rem;\n  margin-right: 0.5rem;\n}\n\n.aside-tags .tags {\n  display: flex;\n  align-items: center;\n  flex-wrap: wrap;\n  margin: 0;\n}\n\n.aside-tags .tag-item {\n  padding: 4px 6px;\n  margin-right: 4px;\n  font-size: 0.7rem;\n  border-radius: 2px;\n  background-color: var(--bg-white);\n}\n\n.prelude {\n  position: fixed;\n  top: 0;\n  left: 0;\n  width: 100vw;\n  height: 100vh;\n  background: #fff;\n  z-index: 999;\n}\n\n/* code  */\npre {\n  padding: 0;\n}\n\nblockquote {\n  font-size: 1rem;\n  padding: 1em;\n  color: #6a737d;\n  border: 1px solid #e3e3e3;\n  border-left: 0.25em solid #dfe2e5;\n  overflow: auto;\n}\n\ncode {\n  word-wrap: normal;\n  word-break: keep-all;\n  white-space: pre;\n}\n\n.hljs {\n  padding: 12px;\n}\n\n/* shadow */\n.card,\n.header,\n.article,\n.avatar-img {\n  box-shadow: var(--shadow);\n}\n\n.utterances {\n  max-width: var(--wrapper-width);\n}\n\n/* prev next */\n.prev-next {\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n}\n\n.prev-next .link {\n  flex: 1;\n  font-size: 0.9rem;\n  overflow: auto;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.prev-next .next {\n  text-align: right;\n}\n\n@media screen and (max-width: 768px) {\n  .prev-next .link {\n    font-size: 10px;\n    text-overflow: unset;\n  }\n}\n\n/* dark */\nbody.dark,\nbody.dark .search-form-input {\n  color: #ffffff;\n  background-color: var(--bg-dark);\n}\n\nbody.dark .card,\nbody.dark .header,\nbody.dark .navbar,\nbody.dark .article,\nbody.dark .tag-item,\nbody.dark .aside-tags .tag-item,\nbody.dark .uk-modal-dialog,\nbody.dark .uk-modal-close-full {\n  background-color: var(--bg-darken);\n}\n\nbody.dark .card,\nbody.dark .article {\n  box-shadow: none;\n}\n\nbody.dark .card-hover:hover {\n  box-shadow: var(--dark-shadow);\n}\n\nbody.dark .footer {\n  box-shadow: none;\n}\n\nbody.dark .footer .wave path {\n  fill: var(--bg-dark);\n}\n\nbody.dark .search-form {\n  border-color: #fff;\n}\n\nbody.dark h2,\nbody.dark h3,\nbody.dark h4,\nbody.dark h5,\nbody.dark h6,\nbody.dark .title,\nbody.dark .animate-list__title,\nbody.dark .article-title,\nbody.dark .article-meta,\nbody.dark .navbar a,\nbody.dark blockquote {\n  color: #fff;\n}\n\nbody.dark tr:nth-child(2n) {\n  background-color: #4e4a4a;\n}\n\nbody.dark .hover-underline-animation::after {\n  background-color: #fff;\n}\n\n@media (prefers-color-scheme: dark) {\n  html,\n  body,\n  .search-form-input {\n    color: #ffffff;\n    background-color: var(--bg-dark);\n  }\n\n  .card,\n  .header,\n  .footer,\n  .navbar,\n  .article,\n  .tag-item,\n  .aside-tags .tag-item {\n    background-color: var(--bg-darken);\n  }\n\n  .search-form {\n    border-color: #fff;\n  }\n\n  h2,\n  h3,\n  h4,\n  h5,\n  h6,\n  .title,\n  .animate-list__title,\n  .article-title,\n  .article-meta,\n  .navbar a,\n  blockquote {\n    color: #fff;\n  }\n\n  tr:nth-child(2n) {\n    background-color: #4e4a4a;\n  }\n\n  .hover-underline-animation::after {\n    background-color: #fff;\n  }\n}\n\n.friend-link {\n  display: flex;\n  align-items: center;\n}\n\n.friend-avatar {\n  display: inline-block;\n  width: 36px;\n  border-radius: 50%;\n  margin-right: 12px;\n}\n"
  },
  {
    "path": "source/sw.js",
    "content": "importScripts('https://cdn.jsdelivr.net/npm/workbox-cdn/workbox/workbox-sw.js')\n\nif (workbox) {\n  console.log(`Yay! Workbox is loaded 🎉`)\n\n  workbox.routing.registerRoute(\n    '/',\n    new workbox.strategies.NetworkFirst({\n      cacheName: 'index'\n    })\n  )\n\n  workbox.routing.registerRoute(\n    /\\/post.|/,\n    new workbox.strategies.NetworkFirst({\n      cacheName: 'posts'\n    })\n  )\n\n  workbox.routing.registerRoute(\n    /\\.(?:js|css)$/,\n    new workbox.strategies.StaleWhileRevalidate({\n      cacheName: 'static'\n    })\n  )\n\n  workbox.routing.registerRoute(\n    /\\.(otf|woff)$/,\n    new workbox.strategies.StaleWhileRevalidate({\n      cacheName: 'fonts'\n    })\n  )\n\n  workbox.routing.registerRoute(\n    /\\.(png|jpg|jpeg|svg|gif|webp)$/,\n    new workbox.strategies.StaleWhileRevalidate({\n      cacheName: 'images',\n      plugins: [\n        new workbox.expiration.Plugin({\n          maxEntries: 20,\n          maxAgeSeconds: 7 * 24 * 60 * 60\n        })\n      ]\n    })\n  )\n} else {\n  console.log(`Boo! Workbox didn't load 😬`)\n}\n"
  }
]