Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

taro如何使用cax 渲染svg #70

Open
23233 opened this issue May 11, 2019 · 6 comments
Open

taro如何使用cax 渲染svg #70

23233 opened this issue May 11, 2019 · 6 comments

Comments

@23233
Copy link

23233 commented May 11, 2019

如题 taro如何使用cax 渲染svg

谢谢!

@dqmmpb
Copy link

dqmmpb commented Jun 22, 2019

  1. 直接使用 https://github.com/dntzhang/cax/tree/master/packages/cax-weapp/cax 中的模块,按照 https://nervjs.github.io/taro/docs/mini-third-party.html 中的方式
  2. 引入cax组件
    ├── cax
    │   ├── cax.js
    │   ├── cax.json
    │   ├── cax.wxml
    │   ├── cax.wxss
    │   └── index.js
  3. demo代码
import Taro, {Component, Config} from '@tarojs/taro'
import {View, Image} from '@tarojs/components'
import Cax from '@/lib/cax/index'

import './index.less'

export default class Index extends Component {

  /**
   * 指定config的类型声明为: Taro.Config
   *
   * 由于 typescript 对于 object 类型推导只能推出 Key 的基本类型
   * 对于像 navigationBarTextStyle: 'black' 这样的推导出的类型是 string
   * 提示和声明 navigationBarTextStyle: 'black' | 'white' 类型冲突, 需要显示声明类型
   */
  config: Config = {
    navigationBarTitleText: '首页',
    // 定义需要引入的第三方组件
    usingComponents: {
      'cax': '../../lib/cax/cax' // 书写第三方组件的相对路径
    }
  }

  componentDidMount() {
    //比 web 里使用 cax 多传递 this,this 代表 Page 或 Component 的实例
    //Taro中,如果需要获得wx的 Page 或 Component 的实例,需要使用this.$scope
    const stage = new Cax.Stage(373, 373, 'myCanvas', this.$scope)
    const rect = new Cax.Rect(100, 100, {
      fillStyle: 'black'
    })

    rect.originX = 50
    rect.originY = 50
    rect.x = 100
    rect.y = 100
    rect.rotation = 30

    rect.on('tap', () => {
      console.log('tap')
    })

    stage.add(rect)
    stage.update()
  }

  componentDidShow() {
  }

  render() {

    return (
      <View className='home'>
        <cax id='myCanvas' canvas-id='myCanvas'></cax>
      </View>
    )
  }
}

@zhangchenna
Copy link

zhangchenna commented Jun 28, 2019

Cannot read property 'setData' of null;at "pages/index/index" page lifeCycleMethod onReady function

@dqmmpb
Copy link

dqmmpb commented Jun 28, 2019

Cannot read property 'setData' of null;at "pages/index/index" page lifeCycleMethod onReady function

@zhangchenna 我这里没出现setData为空的情况
cax 我放置的位置是

├── src
│   ├── lib
│   │   ├── cax
│   │   │   ├── cax.js
│   │   │   ├── cax.json
│   │   │   ├── cax.wxml
│   │   │   ├── cax.wxss
│   │   │   └── index.js
│   ├── pages
│   │   ├── cax
│   │   │   ├── index.less
│   │   │   ├── index.tsx
// pages/cax/index
import Taro, {Component, Config} from '@tarojs/taro'
import {View} from '@tarojs/components'
import Cax from '@/lib/cax'

import './index.less'

export default class Index extends Component {

  /**
   * 指定config的类型声明为: Taro.Config
   *
   * 由于 typescript 对于 object 类型推导只能推出 Key 的基本类型
   * 对于像 navigationBarTextStyle: 'black' 这样的推导出的类型是 string
   * 提示和声明 navigationBarTextStyle: 'black' | 'white' 类型冲突, 需要显示声明类型
   */
  config: Config = {
    navigationBarTitleText: '首页',
    // 定义需要引入的第三方组件
    usingComponents: {
      'cax': '../../lib/cax/cax', // 书写第三方组件的相对路径
    }
  }

  componentDidMount() {
    //比 web 里使用 cax 多传递 this,this 代表 Page 或 Component 的实例
    //Taro中,如果需要获得wx的 Page 或 Component 的实例,需要使用this.$scope
    const stage = new Cax.Stage(373, 373, 'myCanvas', this.$scope)
    const rect = new Cax.Rect(100, 100, {
      fillStyle: 'black'
    })

    rect.originX = 50
    rect.originY = 50
    rect.x = 100
    rect.y = 100
    rect.rotation = 30

    rect.on('tap', () => {
      console.log('tap')
    })

    stage.add(rect)
    stage.update()
  }

  componentDidShow() {
  }

  render() {

    return (
      <View className='home'>
        <cax id='myCanvas'></cax>
      </View>
    )
  }
}

config/index.js中配置alias

  alias: {
    '@/actions': path.resolve(__dirname, '..', 'src/actions'),
    '@/assets': path.resolve(__dirname, '..', 'src/assets'),
    '@/components': path.resolve(__dirname, '..', 'src/components'),
    '@/constants': path.resolve(__dirname, '..', 'src/constants'),
    '@/reducers': path.resolve(__dirname, '..', 'src/reducers'),
    '@/style': path.resolve(__dirname, '..', 'src/components/style'),
    '@/utils': path.resolve(__dirname, '..', 'src/utils'),
    '@/lib': path.resolve(__dirname, '..', 'src/lib')
  },

tsconfig中配置path

    "paths": {
      "@/actions/*": ["./src/actions/*"],
      "@/components/*": ["./src/components/*"],
      "@/constants/*": ["./src/constants/*"],
      "@/reducers/*": ["./src/reducers/*"],
      "@/style/*": ["./src/components/style/*"],
      "@/utils/*": ["./src/utils/*"],
      "@/lib/*": ["./src/lib/*"]
    }

另外 由于taro和wx都不支持<svg>标签,暂时没有好的办法直接把cax的demo中svg的例子搬过来,需要把svg中的path变为js的字符串数组,其他代码和cax的demo基本一致,可以自行迁移一下 wechart中SVG的example

@dqmmpb
Copy link

dqmmpb commented Jun 28, 2019

迁移自 wechart中SVG的example的例子

import Taro, {Component, Config} from '@tarojs/taro'
import {View} from '@tarojs/components'
import Cax from '@/lib/cax'

import pasition from "./pasition";
import {getLength} from "./bezier";
import Pen from "./pen";

export default class Index extends Component {

  /**
   * 指定config的类型声明为: Taro.Config
   *
   * 由于 typescript 对于 object 类型推导只能推出 Key 的基本类型
   * 对于像 navigationBarTextStyle: 'black' 这样的推导出的类型是 string
   * 提示和声明 navigationBarTextStyle: 'black' | 'white' 类型冲突, 需要显示声明类型
   */
  config: Config = {
    navigationBarTitleText: 'Cax Man Demo',
    // 定义需要引入的第三方组件
    usingComponents: {
      'cax': '../../../lib/cax/cax', // 书写第三方组件的相对路径
    }
  }

  componentDidMount() {

    //比 web 里使用 cax 多传递 this,this 代表 Page 或 Component 的实例
    //Taro中,如果需要获得wx的 Page 或 Component 的实例,需要使用this.$scope
    const stage = new Cax.Stage(430, 430, 'myCanvas', this.$scope)

    const mapPath = [
      "M189.7,280.4c65.7,0,131.4,0,197.2,0c0,65.7,0,131.4,0,197.2c-65.7,0-131.5,0-197.2,0 C189.7,411.9,189.7,346.2,189.7,280.4z M272.6,380.5L272.6,380.5c1.1,0,2.2,0.2,3.3,0.2c1.8,0.1,3.6,0.1,5.7,0.2 c0.2-0.3,0.6-1.1,1-2c-0.9-0.3-1.8-0.7-3.2-1.2c1.2-0.4,1.8-0.5,2.4-0.7c-0.1-0.5-0.2-1.1-0.3-1.7c1,0.9,1.9,1.6,2.7,2.3 c2.4-1.5,1-3.1,0.6-4.9c-0.4-2.1-1.4-3.1-3.5-3.4c1.2-1.6,1.8-3.3,0.6-4.6c-0.9-1-2.4-1.4-3.7-1.9c-1.4-0.6-2.9-0.8-4.2-1.5 c-3-1.6-4.6-1.5-7,0.9c-0.1,0.1-0.7,0-0.7,0.1c-1.2,1.8-2.4,3.7-3.8,6c1.7-0.2,3,0.7,3.3-1.2c0-0.3,0.5-0.7,0.9-0.7 c2.5-0.1,5.3-0.8,7.5,0c2.7,0.9,5,3,7.2,4.8c0.7,0.6,0.5,2.3,0.7,3.5c-0.2,0.1-0.4,0.2-0.6,0.3c-1.1-0.6-2.1-1.3-3.2-1.9 c-0.5-0.3-1.1-0.6-1.7-0.6c-0.7,0-1.3,0.4-2,0.6c-1.4,0.3-2.9,0.6-4.3,0.9c-0.4,0.1-0.7,0.2-1.1,0.2c0-0.1-0.1-0.2-0.1-0.3 c0.8-0.5,1.5-1,2.3-1.5c-0.1-0.2-0.2-0.3-0.3-0.5c-1.6,1-3.3,1.9-4.9,3c-0.3,0.2-0.2,1.2,0,1.7 C267.5,379.1,269.7,380.3,272.6,380.5z M305.3,415.9c1.3-2.5,1.2-3.2-0.1-4.2c-0.9,2.2-1.8,4.4-2.7,6.6c0.2,0.1,0.5,0.2,0.7,0.3 c0.5-1,0.9-1.9,1.4-2.9C304.8,415.7,305.1,415.8,305.3,415.9c1,2,1.9,4.1,2.7,6c0.9-0.4,1.8-0.9,2.8-1.4c-1.2,3.1-3.1,5.6-6,7 c-2.3,1.1-4.9,1.9-7.3,2.6c-0.5,0.2-1.3-0.3-1.9-0.4c0-0.1,0.1-0.3,0.1-0.4c1-0.3,1.9-0.7,3.3-1.1c-0.5-0.6-1-1.3-1.6-2 c0.2-0.3,0.5-0.6,1.2-1.3c-1.1,0.3-1.8,0.8-2.2,0.6c-1.7-1.1-1.9,0.4-2.7,1.3c-0.8,0.9-1.9,1.6-3,1.9c-1.7,0.4-3.6,0.6-5.3,0.4 c-2.1-0.2-4.2-0.8-5.5-2.9c-0.1,0-0.3,0.1-0.4,0.2c-0.2,0-0.4,0-0.6-0.1c-3.1-1.8-5.3-4.3-6.1-7.9c-0.4-1.8-0.5-4-1.5-5.4 c-1.9-2.8-2.1-5.7-2-8.8c0.1-2,0.5-3.9-1.8-5.1c-0.6-0.3-1.3-0.9-1.6-1.6c-1.2-2.5-2.3-5-3.3-7.6c-0.5-1.2-0.6-2.6-0.9-4.1 c0,0,0.2-0.1,0,0c-0.3-1.7-0.6-3.3-0.9-4.9c-0.1-0.4-0.2-0.7-0.3-1.1c-0.3-0.7-1-1.4-1-2.2c-0.2-3-0.2-6-0.2-9 c0-1.3-0.1-2.7,0.1-3.9c0.7-3.8,2.1-7.6,2.2-11.4c0.1-4.2,2.5-6.5,5.2-8.9c1-0.9,2.2-1.4,3.2-2.2c1.6-1.3,2.7-1.3,4.1,0.1 c0.2,0.2,0.7,0.3,0.9,0.2c1.6-0.7,3.1-1.4,4.7-2.1c0.2-0.1,0.8,0.6,0.9,0.5c0.4-0.3,0.6-0.8,0.9-1.1c0.1-0.1,0.5,0,0.7,0.1 c1.4,0.6,2.9,1.2,4.3,1.7c0.1,0,0.3,0.2,0.3,0.2c-0.3,2.4,1.8,0.9,2.6,1.5c-0.6-0.3-1.1-0.6-2.1-1.1c1-0.2,1.5-0.3,1.9-0.4 c-0.2-0.5-0.6-1.3-0.4-1.4c0.5-0.5,1.1-0.7,1.7-1c0.3,0.7,0.6,1.1,0.8,1.6c0.5-0.7,0.9-1.2,1.6-2.1c0.3,1.1,0.4,1.5,0.3,1.4 c0.3-0.2,0.8-0.7,1.2-0.6c0.5,0.1,0.9,0.7,1.2,1.2c0.6,1.4,1.1,2.9,1.7,4.5c0.4-1.1,0.7-2,1.1-3c0.3,0.4,0.6,0.9,0.7,0.8 c1.5-0.7,2.5-2.6,4.6-1.5c0.4-1.6,1.2-0.2,1.8-0.2c0.8,0,1.5,0,2.3,0c0-0.2,0-0.3,0.1-0.5c-0.5-0.4-1-0.8-1.2-1 c0.1-0.7,0.1-1.2,0.1-1.7c1.8,0,2,1.6,2.8,3.2c0.3-1,0.4-1.5,0.7-2.4c0.3,1,0.5,1.6,0.8,2.4c0.3-0.5,0.5-0.7,0.8-1.3 c0,1.7,0,3,0,4.7c0.9-0.3,2-0.6,2.9-0.8c0.2,1,0.4,2,0.6,3c0.4-0.3,0.8-0.6,1.1-0.8c0.2,1,0.2,2.1,0.7,2.9 c1.7,2.6,1.1,5.7,1.8,8.5c0.4,1.6,0.1,3.8,1.1,4.7c1.4,1.3,0.2,2.4,0.7,3.4c0,0.1,0.1,0.1,0.2,0.3c0.1-0.6,0.2-1,0.3-1.4 c0.1,0,0.2,0,0.3,0c0,7.1,0,14.2,0,21.3c1.6,0.1,1.6,0.1,1.4,3.6c-0.4-1.1-0.6-1.8-1-3c-0.7,4.3-1.4,8.3-2.1,12.2 c0.2,0.2,0.4,0.3,0.5,0.5c0.8-0.5,1.6-0.9,2.3-1.5c0.3-0.3,0.1-1,0.2-1.5c0.2-1,0.5-2,0.7-3c0.2-1,0.2-2,0.3-3c0.1,0,0.3,0,0.4,0 c0,1.1,0,2.1,0,3.2c0.2,0,0.3,0.1,0.5,0.1c0.6-1.3,1.5-2.5,1.8-3.8c0.5-1.8,0.4-3.7,0.8-5.5c0.6-2.6,1.6-5,1.3-7.8 c-0.1-1.1-0.3-2.1-1.8-1.7c0,0-0.1-0.2-0.2-0.4c0.3-0.1,0.7-0.3,1.1-0.4c-0.7-0.7-2-1.2-0.4-2.5c0.4-0.3,1.2-2,1-2.8 c-0.6-2.3,1.8-4.1,0.7-6.4c-0.3-0.6,0.6-1.8,0.8-2.8c0.2-0.9-0.6-1.6-0.3-2.7c0.3-0.9-0.2-2-0.3-3c0-0.2-0.5-0.5-0.5-0.6 c0.8-0.9-0.2-2.2,0.1-2.7c0.6-0.8-0.5-1.5,0.2-2.2c0.3-0.3-0.3-1.3-0.5-2.2c0,0,0.5-0.3,0.4-0.6c-0.2-1.9-0.4-3.8-0.8-5.7 c-0.2-1.1-0.1-2.5-1.4-2.4c0-0.9-0.1-1.8-0.1-2.6c-0.1-1.4-1-2.8,0.1-4.2c0.2-0.3-0.3-1.1-0.4-1.6c-0.1,0-0.3,0.1-0.4,0.1 c0.3-0.6,0.5-1.2,0.9-1.9c-1.3-0.2-2.2-0.3-3.4-0.5c0.1,0.2-0.1-0.1-0.1-0.4c0-3,0.7-6-0.7-9c-1.2-2.5-2.8-4.5-5.2-5.8 c-1.5-0.8-3.1-1.3-4.6-2.1c-1.3-0.7-2.5-1.8-3.9-2.1c-1.4-0.3-1.8-1.4-2.8-2c-1.9-1.2-4-2-6-3c-0.1,0-0.3,0.1-0.5,0.2 c-1.1,1-3.1,0.3-3.8,2.1c0,0.1-0.6,0-0.9,0c-0.5,0-1.1,0-1.6,0c-1.6,0.1-3.2,0.2-4.7,0.5c-1.5,0.3-3.1-1-4.5,0.7 c-0.2,0.2-1.2-0.4-2-0.6c-0.9,0.8-1.9,1.8-3,2.8c-0.1-0.4-0.1-0.8-0.1-0.9c-4.8,1.7-9.6,3.5-14.3,5.2c0-0.1,0-0.4,0-0.9 c-0.6,0.8-1.1,1.4-1.7,2c-1.9,1.9-3.2,4.2-3.7,6.9c-0.3,1.9-0.7,3.8-1.2,5.6c-0.2,0.8-0.9,1.5-1.4,2.3c-0.2-0.1-0.4-0.2-0.5-0.3 c0,1.2,0,2.5,0,3.7c0,0.7-0.1,1.7-0.4,1.9c-1.1,0.6-1,1.5-0.9,2.3c0.1,0.9-1.1,2.4,1.4,2.6c-2.1,1.1-1.3,3.1-2.4,4.5 c0.8-0.1,1.2-0.1,1.3-0.1c-0.5,1-1,1.9-1.4,2.9c-0.1,0.3,0.2,0.7,0.1,1c-0.4,1.2,0.7,3-1.3,3.6c0.5,0.3,0.9,0.6,1.3,0.9 c-0.2,0-0.4,0-0.7,0.1c-0.3,4-0.6,8-1,12.1c0.6-0.1,0.8-0.1,1.4-0.2c-0.3,0.7-0.6,1.2-0.6,1.2c0.2,0.7,0.4,1.1,0.5,1.5 c0.1,0.5-0.1,1.2,0.2,1.4c1.4,1.1,0.5,2.2,0.2,3.3c-0.3,0.8-0.8,1.7-0.8,2.5c0.1,6.3-0.1,12.5,2.2,18.6c0.7,1.7,1.4,2.9,2.9,3.9 c0.5,0.4,1,1.1,1.1,1.8c0.3,1.2,0.2,2.4,0.4,3.6c0.8,4.6,1.8,9,4,13.2c0.7,1.2,1,2.8,1,4.2c0.1,3.7,0,7.5,0.1,11.2 c0.1,2.4-1,4.7-3,5.6c-3.1,1.4-6.3,2.8-9.4,4.2c-6.1,2.8-12.1,5.5-18.2,8.3c-3.8,1.8-7.3,4.1-11.2,5.4c-5.3,1.8-10.3,4.2-15,7.3 c-1.4,0.9-1.9,1.7-2.3,3.2c-0.4,1.5-1,3-1.6,4.5c-1.4,3-2.9,5.9-4.5,9.2c3,0,5.5,0,8.1,0c0.7,0,1.7-0.3,1.9-0.7 c0.3-0.7-0.1-1.6-0.2-2.6c0.8-0.4,1.9-0.9,2.9-1.4c-0.3-0.3-0.4-0.5-0.6-0.7c2.1-1.3,0.6-2.8,0-4.6c1.1,0.6,2,1,3,1.6 c0.1-1,0.2-1.9,0.3-2.9c1.4-0.3,3.1-0.7,4.9-1.2c0-0.2-0.1-0.6-0.1-1.1c2.2,0.4,5.8-1.3,5.6-2.9c0.5,0.4,0.8,0.7,1,0.9 c0.2-0.4,0.4-0.8,0.7-1.2c0.9,1.2,1.5,0,2.4-0.2c-0.5-0.2-0.7-0.3-1.4-0.6c1.7-0.7,3.1-1.2,4.4-1.7c0.3-0.1,0.9,0.1,1.1-0.1 c0.3-0.3,0.4-0.8,0.6-1.2c0.4,0.3,0.8,0.5,1.4,1c-0.2-0.8-0.3-1.3-0.4-1.7c1.9-1.5,5.2-0.1,6-3.6c1.2,1.7,2.4,0.2,3.5,0.2 c1.2,0,2.4-0.2,3.6-0.3c0-0.2,0-0.4,0-0.6c-0.6,0-1.1-0.1-1.7-0.1c0-0.2,0-0.4,0-0.7c1.2-0.1,2.8,0.3,3.5-0.3c1-1,1.4-0.5,1.9,0.2 c0.5,0.7,1.2,1.8,1,2.1c-0.9,1.3,0.3,1.7,0.7,2.4c0.2,0.4,0.1,1,0.2,1.8c2.3,2.2,5,4.7,7.8,7.4c0-0.4-0.1-0.7-0.1-1 c1.5,3.4,4.7,4.6,7.8,6c0-0.1,0.2-0.3,0.3-0.5c0.6,0.4,1.2,0.8,2,1.3c-0.6,0.1-1,0.2-1.4,0.4c1.4,1.2,2.7,2.4,4,3.6 c0.1-0.2,0.2-0.5,0.3-0.8c1,0.1,1.9,0.2,2.7,0.3c0.1,0.4,0,0.8,0.2,1c0.9,0.6,1.7,1.3,2.7,1.6c1.6,0.4,3.4,0.6,5.1,0.8 c1.1,0.1,2.3,0,3.4,0c-0.1-0.2-0.2-0.3-0.3-0.5c1.1-0.8,2.2-2.1,3.3-2.1c1.1,0,2.3,1.2,3.5,1.9c0.4,0.3,0.9,0.6,1.4,0.7 c0.6,0.1,1.3,0.1,2,0c2-0.1,4.1,0.1,5.9-0.5c1.2-0.4,2.3-1.2,3.7-1.1c0.1,0,0.2-0.1,0.4-0.3c-0.3-0.2-0.6-0.5-0.8-0.7 c2-1.7,5.3-0.6,6.8-3.3c1.8,0.5,2.3-1.6,3.6-1.7c1.5-0.2,1.6-1,1.8-1.8c1-0.4,1.9-0.8,2.6-1.5c1.4-1.5,2.6-3.3,4.1-4.8 c0.9-0.9,2.2-1.5,3.4-2.2c0,0-0.3-0.1-0.8-0.3c1.2-0.7,2.3-1.4,3.4-2c0.2,0.1,0.4,0.2,0.6,0.4c-0.3-1.1-0.6-2.2-0.9-3.6 c0.7,0.4,1.1,0.7,1.7,1.1c0-0.7,0-1.4,0-2.1c0.5,0,1.1-0.2,1.3,0c1.2,1.3,3,1.1,4.2,0.9c1.6-0.4,3,0.7,3.1,1.2 c0.6,1.8,1.9,1.3,3.1,1.6c1.4,0.4,2.7,1.1,4,1.9c0.4,0.2,0.4,1,0.5,1.5c0.1-0.2,0.2-0.3,0.4-0.5c0.8,0.4,1.7,0.8,2.4,1.3 c1,0.7,1.8,1.5,3,2c1.8,0.8,3.5,1.9,5.2,3c2.3,1.5,4.8,2.9,5.4,6.1c0.5-0.6,0.9-1,1.4-1.5c0.5,2.4,2.5,4.2,4.8,4 c-0.8,1.1-1.4,2-2.1,3c3.6,0,7.3,0,11.2,0c-0.4-2.2-1-4.4-1.3-6.5c-0.5-3.4-2.7-5.6-5.3-7.4c-2.8-2-5.8-3.8-8.8-5.6 c-4.7-2.8-9.3-6-14.3-8.3c-6-2.8-12.4-4.9-18.5-7.5c-2.3-1-4.3-2.7-6.5-4c-2.3-1.3-4.5-3-7.5-2.7c-0.6,0.1-1.3-0.7-1.9-1.1 c-0.8-0.6-1.5-1.2-2.3-1.9c-0.1,0.1-0.2,0.3-0.3,0.4c0.4,0.5,1,1,1.2,1.5c0.5,1.6,1,3.3,1.3,5c0.2,0.7,0.3,1.5,0.1,2.2 c-0.2,0.9-0.9,1.6-1,2.5c-0.2,1.7-0.9,3-2.5,3.5c-0.8,0.2-1.8-0.1-2.5-0.4c-0.3-0.2-0.3-1.1-0.4-1.6c-0.3-1.5-0.2-3,0-4.5 c0.2-1.2-0.4-2.4-0.5-3.7c-0.1-1.1,0-2.3,0.3-3.4c0.6-2,1.6-3.9,1.9-6c0.3-1.9-0.7-3.9,0.8-5.7c0,0-0.2-0.2-0.2-0.3 c0-1.7-0.5-3.7,0.2-5c0.6-1,1.5-1.3,0.4-2.3c0,0,0.3-0.3,0.4-0.4c0.2-0.8,0.3-1.6,0.6-2.3c0.2-0.5,0.6-0.8,0.9-1.1 c-0.5-3.5-2.2-7,0.8-10.2c-0.1,0-0.5-0.1-0.5-0.1c-0.3-1.5-0.5-2.6-0.8-3.7c0.1,0.1,0.3,0.1,0.4,0.2c0.2-0.5,0.4-1,0.6-1.5 c-1.5-0.5-0.3-1.5-0.4-2.2c-0.4-3,0-5.9,1-8.6c-0.4-0.1-0.7-0.2-1-0.3c1.1-0.9-0.2-1.6-0.3-2.4c0-0.7,0.3-1.6,0-2.2 c-1.1-1.9-2.4-3.6-3.7-5.4c-1.4,2.5-3.4-0.3-5.2-0.1c0.4,0.6,0.8,1.1,1.1,1.6c-1.8-0.3-3.4-0.7-5.1-0.9c-0.7-0.1-1.4,0.4-2,0.2 c-2.3-0.6-4.8,1.3-4.8,3.8c1-0.1,2-0.1,2.5-0.1c0.7-1.1,1.2-1.9,1.4-2.3c0.9,1,1.6,2.3,2.5,2.7c1.7,0.6,2.5,0,3.9-2.3 c0.4,1.3,0.7,2.4,1.1,3.6c0.2,0,0.4-0.1,0.6-0.1c-0.7,0.7-1.3,1.4-2.1,2.3c1.9,0.3,3.5,0.6,5.1,0.9c0-0.2,0-0.4,0.1-0.6 c0.5,0.6,1.1,1.2,1.6,1.8c-0.7,1.3-1.3,2.6-0.8,4.3c0.2,0.6,0.2,1.5-0.1,1.9c-1.3,1.5-1.3,3.4-1.5,4.8c-0.7,0.5-1.6,0.7-1.8,1.2 c-0.7,1.8-1.3,3.7-1.6,5.7c-0.4,2.6,0,3.2,1.8,3.3c0.7,4.7-1.4,8.9-3.1,9.2c0.1,0.6,0.2,1.2,0.3,1.6 C306.1,416.1,305.7,416,305.3,415.9z M278.5,395.8c-1-1.8-0.1-3.6,2.1-4c3.4-0.6,4.6-2.9,3.5-6c-1-0.2-1.8-0.4-2.7-0.6 c-0.3,0.5-0.8,1.1-1,1.9c-0.3,0.8-0.2,1.8-0.5,2.6c-0.1,0.4-0.7,0.8-1.1,0.8c-1.5,0.3-2,1.2-1.9,2.6c0.1,0.9,0.4,1.8,0.3,2.7 c-0.2,2.6,1.8,4.3,4.5,3.9c1.2-0.2,2.6,0.5,3.8,0.8c1,0.2,2,0.3,3,0.4c1,0.1,2,0.1,3,0.2c1.7,0.2,3.7-0.2,4.9,1.5 c0,0,0.1-0.1,0.1-0.1c2.1-0.2,3.4-1.9,2.8-3.9c-0.6-2.1-1.4-4.2-2.1-6.4c-0.2-0.7-0.2-1.5-0.3-2.3c-0.2-2-0.4-3.9-0.7-6.3 c-1.1,0.9-1.7,1.4-2.5,2.1c-0.1-0.9-0.2-1.8-0.4-3.3c0.7,0.5,0.9,0.7,1.3,1c0-1.2,0-2.3,0-3.4c0-1.2-0.4-2.4,1-3.2 c0.4-0.2,0.7-1.5,0.4-1.9c-0.6-0.9-0.8-1.5,0-2.3c0.7-0.6,1.2-1.4,2-2c2.3-1.7,4.8-3.1,7.6-3.4c1.6-0.2,3.2-0.1,4.7,0.1 c0.2,0,0.2,1.4,0.3,2.3c0.9-0.3,1.9-0.6,3-0.9c0,0.4,0,0.7-0.1,1.2c1-0.7,1.9-1.4,2.9-2.1c-1-1.3-1.9-2.7-3.1-4 c-1.4-1.5-2.6-3.4-5.2-2.5c-0.5,0.2-1.1,0.3-1.7,0.4c-1.7,0.4-3.5,0.7-5.2,1.3c-1.5,0.5-3,1.1-4.5,1.9c-0.8,0.4-1.5,1.1-2,1.8 c-0.2,0.3,0.3,1.1,0.5,1.7c0.3-0.1,0.7-0.2,1.2-0.4c-0.1,0.5,0,0.9-0.2,1.2c-1.5,1.8-3,3.4-3.9,5.8c-1,2.7-1.4,5.4-1.7,8.1 c-0.3,2.4-0.3,4.9-0.4,7.5c0.2,0.2,0.8,0.4,1,0.8c0.6,1.2,1.1,2.3,2.9,1.9c0.4-0.1,1.2,0.7,1.6,1.2c1.2,1.4,0.7,2.8,0.3,3.8 c-1.9-0.4-3.7-0.7-5.3-1.3c-0.3-0.1-0.5-0.8-1.1-0.4c-0.2,0.2-0.5,0.2-0.7,0.3c-1.4,1.4-2.9,0.9-4.2,0 C282.7,395.4,280.6,395.9,278.5,395.8z M294.8,413.1c1.2-0.5,2.6-1.3,4.1-1.8c2.7-0.8,2.9-1,1.2-3.1c-0.2-0.2-0.3-0.4-0.2-0.3 c-1.4,0.2-2.7,0.6-3.9,0.5c-2.7-0.2-5.4-0.6-8.1-1c-1.5-0.2-3-0.7-4.5-1c-0.3-0.1-0.7,0-1,0c-2.4,0-4.7,0-7.4,0 c-0.2,0.5-0.7,1.3-1.2,2.3c1.1,0.1,2.2,0,2.9,0.4c0.9,0.6,1.4,1.7,2.2,2.4c0.5,0.4,1.4,0.4,2.6,0.7c-0.7-1-1.1-1.6-1.9-2.7 c2.2,0.2,3.8,0.3,5.5,0.5c1.3,0.1,2.7,0.2,4,0.4c0.7,0.1,1.6,0.1,2,0.5c0.7,0.7,1.2,1.4,2.4,0.8 C293.5,411.5,294.1,412.3,294.8,413.1z M292.6,415.9c-0.1-0.1-0.2-0.3-0.3-0.4c-2.6-0.2-5.2-0.5-7.8-0.7c-0.5,0-1,0.4-1.5,0.6 c0.5,0.8,1,1.6,1.6,2.3c1,1.3,2.1,0.1,3-0.1C289.4,417.3,291,416.6,292.6,415.9z M289.5,353.7c-0.2-1.3-0.8-2.3-0.5-3 c0.7-1.7,0.4-3.1-0.4-4.7c-0.2,1.9-0.4,3.6-0.6,5.4c0.2,0.1,0.4,0.2,0.6,0.3c-1,0.7-2,1.4-3,2.1 C286.9,353.7,288.3,353.7,289.5,353.7z M297.1,421.6c0.1,0.1,0.2,0.3,0.4,0.4c1.3-1.3,2.7-2.6,4-3.9c-0.1-0.2-0.3-0.5-0.4-0.7 c-1,0.1-1.9,0.2-3,0.3C297.7,418.9,297.4,420.3,297.1,421.6z M290.3,475.8c1.3,0.5,2.6,0.9,4,1.4C293.7,475,292,474.5,290.3,475.8 z",
      "M305.3,416c0.4,0.1,0.8,0.1,1.2,0.2c-0.1-0.4-0.2-1-0.3-1.6c1.6-0.2,3.8-4.5,3.1-9.2c-1.8-0.1-2.3-0.7-1.8-3.3 c0.3-1.9,1-3.8,1.6-5.7c0.2-0.5,1-0.7,1.8-1.2c0.2-1.4,0.2-3.3,1.5-4.8c0.3-0.4,0.3-1.3,0.1-1.9c-0.5-1.6,0.2-2.9,0.8-4.3 c-0.6-0.6-1.1-1.2-1.6-1.8c0,0.2,0,0.4-0.1,0.6c-1.6-0.3-3.2-0.6-5.1-0.9c0.8-0.9,1.5-1.6,2.1-2.3c-0.2,0-0.4,0.1-0.6,0.1 c-0.3-1.2-0.7-2.3-1.1-3.6c-1.4,2.3-2.2,2.9-3.9,2.3c-1-0.4-1.6-1.6-2.5-2.7c-0.3,0.4-0.8,1.3-1.4,2.3c-0.4,0-1.5,0.1-2.5,0.1 c0-2.5,2.4-4.4,4.8-3.8c0.6,0.2,1.4-0.3,2-0.2c1.7,0.2,3.4,0.6,5.1,0.9c-0.3-0.5-0.7-1-1.1-1.6c1.8-0.2,3.7,2.6,5.2,0.1 c1.3,1.9,2.6,3.6,3.7,5.4c0.3,0.5-0.1,1.4,0,2.2c0,0.8,1.4,1.5,0.3,2.4c0.3,0.1,0.6,0.2,1,0.3c-1,2.7-1.5,5.6-1,8.6 c0.1,0.7-1.1,1.7,0.4,2.2c-0.2,0.5-0.4,1-0.6,1.5c-0.1-0.1-0.3-0.1-0.4-0.2c0.2,1.1,0.5,2.3,0.8,3.7c-0.1,0,0.3,0.1,0.5,0.1 c-3,3.2-1.4,6.7-0.8,10.2c-0.3,0.3-0.7,0.7-0.9,1.1c-0.3,0.7-0.4,1.6-0.6,2.3c-0.1,0.2-0.4,0.4-0.4,0.4c1.1,1.1,0.2,1.4-0.4,2.3 c-0.8,1.2-0.2,3.3-0.2,5c0,0.1,0.2,0.3,0.2,0.3c-1.4,1.8-0.4,3.8-0.8,5.7c-0.4,2-1.4,4-1.9,6c-0.3,1.1-0.3,2.3-0.3,3.4 c0.1,1.2,0.7,2.5,0.5,3.7c-0.3,1.5-0.3,3,0,4.5c0.1,0.6,0.1,1.5,0.4,1.6c0.8,0.4,1.8,0.7,2.5,0.4c1.6-0.5,2.3-1.7,2.5-3.5 c0.1-0.9,0.8-1.6,1-2.5c0.1-0.7,0-1.5-0.1-2.2c-0.4-1.7-0.8-3.4-1.3-5c-0.2-0.6-0.8-1-1.2-1.5c0.1-0.1,0.2-0.3,0.3-0.4 c0.8,0.6,1.5,1.3,2.3,1.9c0.6,0.4,1.3,1.2,1.9,1.1c3-0.3,5.1,1.4,7.5,2.7c2.2,1.3,4.2,3,6.5,4c6.1,2.6,12.5,4.6,18.5,7.5 c5,2.3,9.6,5.5,14.3,8.3c3,1.8,6,3.6,8.8,5.6c2.6,1.8,4.8,4,5.3,7.4c0.3,2.1,0.8,4.3,1.3,6.5c-3.9,0-7.6,0-11.2,0 c0.7-1,1.3-1.9,2.1-3c-2.3,0.2-4.3-1.6-4.8-4c-0.4,0.5-0.8,0.9-1.4,1.5c-0.7-3.2-3.1-4.6-5.4-6.1c-1.7-1.1-3.4-2.2-5.2-3 c-1.2-0.5-2-1.2-3-2c-0.7-0.5-1.6-0.9-2.4-1.3c-0.1,0.2-0.2,0.3-0.4,0.5c-0.2-0.5-0.2-1.3-0.5-1.5c-1.3-0.7-2.6-1.5-4-1.9 c-1.2-0.3-2.5,0.2-3.1-1.6c-0.2-0.5-1.5-1.5-3.1-1.2c-1.2,0.3-3,0.4-4.2-0.9c-0.2-0.2-0.8,0-1.3,0c0,0.7,0,1.4,0,2.1 c-0.5-0.3-1-0.6-1.7-1.1c0.4,1.4,0.7,2.5,0.9,3.6c-0.2-0.1-0.4-0.2-0.6-0.4c-1.1,0.7-2.2,1.3-3.4,2c0.5,0.2,0.7,0.3,0.8,0.3 c-1.1,0.7-2.4,1.3-3.4,2.2c-1.5,1.5-2.7,3.3-4.1,4.8c-0.7,0.7-1.7,1.1-2.6,1.5c-0.2,0.8-0.3,1.7-1.8,1.8c-1.3,0.1-1.9,2.3-3.6,1.7 c-1.5,2.7-4.8,1.6-6.8,3.3c0.3,0.2,0.5,0.4,0.8,0.7c-0.2,0.1-0.3,0.3-0.4,0.3c-1.4-0.2-2.5,0.7-3.7,1.1c-1.8,0.6-3.9,0.4-5.9,0.5 c-0.7,0-1.3,0.1-2,0c-0.5-0.1-0.9-0.4-1.4-0.7c-1.2-0.7-2.3-1.9-3.5-1.9c-1.1,0-2.2,1.3-3.3,2.1c0.1,0.2,0.2,0.3,0.3,0.5 c-1.1,0-2.3,0.1-3.4,0c-1.7-0.2-3.4-0.4-5.1-0.8c-1-0.3-1.8-1-2.7-1.6c-0.2-0.1-0.2-0.6-0.2-1c-0.8-0.1-1.7-0.2-2.7-0.3 c-0.1,0.2-0.3,0.6-0.3,0.8c-1.3-1.2-2.6-2.3-4-3.6c0.5-0.1,0.9-0.2,1.4-0.4c-0.7-0.5-1.3-0.9-2-1.3c-0.2,0.2-0.3,0.5-0.3,0.5 c-3-1.4-6.3-2.6-7.8-6c0,0.3,0.1,0.6,0.1,1c-2.8-2.6-5.5-5.2-7.8-7.4c-0.1-0.8,0.1-1.4-0.2-1.8c-0.4-0.7-1.6-1.1-0.7-2.4 c0.2-0.3-0.5-1.5-1-2.1c-0.5-0.7-0.9-1.1-1.9-0.2c-0.7,0.6-2.3,0.2-3.5,0.3c0,0.2,0,0.4,0,0.7c0.6,0,1.1,0.1,1.7,0.1 c0,0.2,0,0.4,0,0.6c-1.2,0.1-2.4,0.3-3.6,0.3c-1.1,0-2.3,1.5-3.5-0.2c-0.7,3.5-4,2.1-6,3.6c0.1,0.3,0.2,0.8,0.4,1.7 c-0.7-0.5-1-0.7-1.4-1c-0.2,0.4-0.3,0.9-0.6,1.2c-0.2,0.2-0.7,0-1.1,0.1c-1.4,0.5-2.7,1-4.4,1.7c0.6,0.3,0.9,0.4,1.4,0.6 c-0.9,0.1-1.5,1.3-2.4,0.2c-0.2,0.4-0.5,0.8-0.7,1.2c-0.2-0.2-0.5-0.4-1-0.9c0.2,1.6-3.4,3.3-5.6,2.9c0,0.4,0.1,0.8,0.1,1.1 c-1.8,0.4-3.5,0.8-4.9,1.2c-0.1,1-0.2,1.9-0.3,2.9c-1-0.5-1.8-1-3-1.6c0.5,1.8,2,3.3,0,4.6c0.2,0.2,0.4,0.4,0.6,0.7 c-1.1,0.5-2.2,1-2.9,1.4c0.1,1,0.5,2,0.2,2.6c-0.2,0.4-1.3,0.7-1.9,0.7c-2.5,0.1-5.1,0-8.1,0c1.6-3.2,3.1-6.2,4.5-9.2 c0.7-1.4,1.2-2.9,1.6-4.5c0.4-1.4,0.9-2.3,2.3-3.2c4.7-3.1,9.7-5.5,15-7.3c3.9-1.3,7.4-3.6,11.2-5.4c6-2.8,12.1-5.5,18.2-8.3 c3.1-1.4,6.3-2.8,9.4-4.2c2.1-1,3.1-3.2,3-5.6c-0.1-3.7,0.1-7.5-0.1-11.2c-0.1-1.4-0.4-2.9-1-4.2c-2.3-4.1-3.2-8.6-4-13.2 c-0.2-1.2-0.2-2.5-0.4-3.6c-0.2-0.7-0.6-1.4-1.1-1.8c-1.4-1-2.2-2.2-2.9-3.9c-2.3-6.1-2.1-12.3-2.2-18.6c0-0.8,0.6-1.7,0.8-2.5 c0.3-1.1,1.2-2.2-0.2-3.3c-0.3-0.2-0.1-0.9-0.2-1.4c-0.1-0.4-0.3-0.8-0.5-1.5c0,0,0.2-0.5,0.6-1.2c-0.5,0.1-0.8,0.1-1.4,0.2 c0.3-4.1,0.6-8.1,1-12.1c0.2,0,0.4,0,0.7-0.1c-0.4-0.3-0.9-0.6-1.3-0.9c2-0.6,0.9-2.4,1.3-3.6c0.1-0.3-0.2-0.7-0.1-1 c0.4-1,0.9-1.9,1.4-2.9c-0.1,0-0.5,0-1.3,0.1c1.1-1.4,0.4-3.3,2.4-4.5c-2.5-0.1-1.4-1.6-1.4-2.6c-0.1-0.8-0.1-1.7,0.9-2.3 c0.4-0.2,0.4-1.3,0.4-1.9c0.1-1.2,0-2.5,0-3.7c0.2,0.1,0.4,0.2,0.5,0.3c0.5-0.8,1.1-1.5,1.4-2.3c0.5-1.8,0.9-3.7,1.2-5.6 c0.5-2.7,1.8-5,3.7-6.9c0.6-0.6,1-1.2,1.7-2c0,0.4,0,0.7,0,0.9c4.7-1.7,9.5-3.4,14.3-5.2c0,0.1,0.1,0.4,0.1,0.9c1.1-1,2.2-2,3-2.8 c0.8,0.3,1.9,0.8,2,0.6c1.3-1.6,3-0.4,4.5-0.7c1.6-0.3,3.2-0.4,4.7-0.5c0.5,0,1.1,0,1.6,0c0.3,0,0.9,0.1,0.9,0 c0.6-1.8,2.7-1.1,3.8-2.1c0.1-0.1,0.4-0.2,0.5-0.2c2,1,4.1,1.8,6,3c0.9,0.6,1.4,1.7,2.8,2c1.4,0.3,2.6,1.5,3.9,2.1 c1.5,0.7,3.1,1.3,4.6,2.1c2.4,1.3,4,3.3,5.2,5.8c1.4,3,0.7,6,0.7,9c0,0.3,0.2,0.6,0.1,0.4c1.2,0.2,2.2,0.3,3.4,0.5 c-0.3,0.7-0.6,1.3-0.9,1.9c0.1,0,0.3-0.1,0.4-0.1c0.2,0.6,0.6,1.4,0.4,1.6c-1.1,1.4-0.2,2.8-0.1,4.2c0.1,0.9,0.1,1.7,0.1,2.6 c1.4,0,1.2,1.4,1.4,2.4c0.3,1.9,0.6,3.8,0.8,5.7c0,0.3-0.4,0.6-0.4,0.6c0.2,0.9,0.8,1.9,0.5,2.2c-0.7,0.7,0.4,1.4-0.2,2.2 c-0.3,0.4,0.6,1.7-0.1,2.7c0,0,0.4,0.4,0.5,0.6c0.2,1,0.6,2.1,0.3,3c-0.3,1,0.5,1.8,0.3,2.7c-0.2,0.9-1.1,2.1-0.8,2.8 c1.1,2.4-1.4,4.2-0.7,6.4c0.2,0.8-0.6,2.5-1,2.8c-1.6,1.3-0.3,1.8,0.4,2.5c-0.4,0.2-0.7,0.3-1.1,0.4c0.1,0.2,0.2,0.4,0.2,0.4 c1.5-0.3,1.6,0.6,1.8,1.7c0.3,2.7-0.7,5.2-1.3,7.8c-0.4,1.8-0.3,3.7-0.8,5.5c-0.3,1.3-1.2,2.5-1.8,3.8c-0.2,0-0.3-0.1-0.5-0.1 c0-1.1,0-2.1,0-3.2c-0.1,0-0.3,0-0.4,0c-0.1,1-0.1,2-0.3,3c-0.2,1-0.5,2-0.7,3c-0.1,0.5,0.1,1.2-0.2,1.5c-0.7,0.6-1.5,1-2.3,1.5 c-0.2-0.2-0.4-0.3-0.5-0.5c0.7-3.9,1.4-7.9,2.1-12.2c0.4,1.1,0.7,1.9,1,3c0.2-3.5,0.2-3.5-1.4-3.6c0-7.1,0-14.2,0-21.3 c-0.1,0-0.2,0-0.3,0c-0.1,0.4-0.2,0.9-0.3,1.4c-0.1-0.2-0.2-0.3-0.2-0.3c-0.5-1.1,0.7-2.2-0.7-3.4c-1-0.9-0.7-3.1-1.1-4.7 c-0.7-2.8-0.1-5.9-1.8-8.5c-0.5-0.7-0.5-1.8-0.7-2.9c-0.3,0.2-0.7,0.5-1.1,0.8c-0.2-1-0.4-2-0.6-3c-1,0.3-2,0.6-2.9,0.8 c0-1.7,0-3,0-4.7c-0.4,0.6-0.5,0.8-0.8,1.3c-0.3-0.8-0.5-1.4-0.8-2.4c-0.2,0.9-0.4,1.4-0.7,2.4c-0.8-1.6-1-3.3-2.8-3.2 c0,0.5-0.1,1-0.1,1.7c0.3,0.2,0.7,0.6,1.2,1c0,0.2,0,0.3-0.1,0.5c-0.8,0-1.5,0-2.3,0c-0.6,0-1.3-1.4-1.8,0.2 c-2.1-1.1-3.2,0.8-4.6,1.5c0,0-0.3-0.4-0.7-0.8c-0.4,1-0.7,1.9-1.1,3c-0.6-1.6-1.1-3-1.7-4.5c-0.2-0.5-0.7-1.1-1.2-1.2 c-0.4-0.1-0.9,0.5-1.2,0.6c0,0.1-0.1-0.3-0.3-1.4c-0.7,0.9-1.1,1.5-1.6,2.1c-0.2-0.5-0.5-1-0.8-1.6c-0.6,0.3-1.3,0.5-1.7,1 c-0.2,0.1,0.3,0.9,0.4,1.4c-0.4,0.1-0.9,0.2-1.9,0.4c0.9,0.5,1.5,0.8,2.1,1.1c-0.8-0.6-2.9,0.9-2.6-1.5c0-0.1-0.2-0.2-0.3-0.2 c-1.4-0.6-2.9-1.2-4.3-1.7c-0.2-0.1-0.6-0.2-0.7-0.1c-0.3,0.3-0.5,0.8-0.9,1.1c-0.1,0.1-0.7-0.6-0.9-0.5c-1.6,0.6-3.1,1.4-4.7,2.1 c-0.3,0.1-0.7,0-0.9-0.2c-1.5-1.4-2.6-1.4-4.1-0.1c-1,0.8-2.3,1.3-3.2,2.2c-2.7,2.4-5.1,4.7-5.2,8.9c-0.1,3.8-1.5,7.6-2.2,11.4 c-0.2,1.3-0.1,2.6-0.1,3.9c0,3,0,6,0.2,9c0,0.7,0.7,1.4,1,2.2c0.2,0.3,0.3,0.7,0.3,1.1c0.3,1.6,0.6,3.2,0.9,4.9c0.2-0.1-0.1,0,0,0 c0.3,1.4,0.4,2.8,0.9,4.1c1,2.6,2.1,5.1,3.3,7.6c0.3,0.6,0.9,1.3,1.6,1.6c2.3,1.2,1.9,3.1,1.8,5.1c-0.1,3.1,0,6,2,8.8 c1,1.5,1.1,3.6,1.5,5.4c0.8,3.6,3,6.1,6.1,7.9c0.2,0.1,0.4,0.1,0.6,0.1c0.2,0,0.4-0.1,0.4-0.2c1.3,2.1,3.3,2.7,5.5,2.9 c1.8,0.2,3.6,0,5.3-0.4c1.1-0.3,2.2-1,3-1.9c0.8-0.9,0.9-2.4,2.7-1.3c0.3,0.2,1.1-0.2,2.2-0.6c-0.7,0.7-1,1-1.2,1.3 c0.5,0.7,1.1,1.3,1.6,2c-1.3,0.4-2.3,0.8-3.3,1.1c0,0.1-0.1,0.3-0.1,0.4c0.6,0.2,1.4,0.6,1.9,0.4c2.5-0.8,5-1.5,7.3-2.6 c2.8-1.4,4.7-3.9,6-7c-1,0.5-1.9,0.9-2.8,1.4C307.2,420.1,306.3,418,305.3,416L305.3,416z M291.7,321.4c0.3,1.6-0.7,1.4-1.7,1.3 c-1.6-0.1-3.2,0-4.8,0c0,0.2,0,0.3,0,0.5c0.3,0.2,0.5,0.5,0.5,0.5c-0.5,0.4-0.9,0.8-1.3,1.2c0.1,0.1,0.2,0.2,0.3,0.3 c0.6-0.2,1.2-0.4,1.8-0.6c0,0.2,0.1,0.5,0.1,0.7c-7.8,1.6-15.8,1.9-23.8,1.8c0.7,0,1.4,0,1.7,0c0.7,1.1,1.3,1.9,1.8,2.7 c0.3-0.2,0.6-0.4,0.9-0.6l-0.1-0.1c0.1,0.5,0.2,1,0.2,1.3c-3,1.1-4.5,3.1-3.6,5.8c1.1,0.6,1.9,1.1,2.7,1.5c0.4,0.2,1,0.4,1.3,0.2 c0.4-0.2,1-0.8,0.9-1.2c-0.1-1.6,0.3-2.9,1.4-3.2c3-0.8,5.8-2.3,9-2.2c-1.1,0.6-2.2,1.2-3.3,1.8c2.1-0.2,3.9-0.1,5.6,1.4 c0.3,0.3,1,0.1,1.9,0.2c-0.9-0.6-1.4-0.9-2-1.4c0.7-0.3,1.3-0.6,1.8-0.8c-0.5-0.6-1.1-0.8-1.7-0.9c-0.8-0.1-1.5-0.2-2.3-0.3 c-0.1-0.8,0.1-1,1-0.8c1.5,0.4,3,0.9,4.4,1.3c0.8,0.3,1.6,0.7,2.5,0.8c1.4,0.2,2.7,0.3,4.1,0.4c1,0.1,2,0,2.9,0 c0.6,0.1,1.1-0.3,1.8-0.5c0.2-0.1,0.7,0.2,0.8,0.5c0.1,0.3,0,0.7-0.1,1c0.4-0.2,0.8-0.5,1.2-0.8c0.8,1.4,2,1.6,3.5,1 c1.1-0.4,2.3-0.4,3.4-0.6c0.8-1.7-3.4-2-2-4c1.1,0.9,2.2,1.8,2.9,2.3c0.4,1.4,0.8,2.6,1.1,3.7c0.6-0.3,0.9-0.4,0.8-0.4 c0.4-2.7,0.8-5.2,1.3-8.1c-3.4-2.3-7-4.7-10.6-7.1c0.2,0,0.5,0,0.7-0.1c1.2-0.6,3.7-0.5,4.5,0.5c0.6,0.7,0.6,2,1.3,2.5 c1.5,1.3,3.3,2.2,5,3.3c0.1,0.6,0.6,1.4,0.4,1.6c-1.5,1.4,0.2,2.1,0.6,3.1c0.2,0.6,0.4,1.2,0.7,1.8c1.2,2.5,2.5,4.8,5,6.4 c0.3-1.1,0.5-2.1,0.7-3c2,0.1,2.1,0,1.5-1.9c-0.1-0.3-0.2-0.6-0.2-0.9c-0.3-1.8-0.6-3.6-0.9-5.3c-0.2,0-0.3,0-0.5,0 c-0.1,0.6-0.1,1.2-0.2,1.8c-0.1,0-0.3,0-0.4,0c-0.3-3.3-0.6-6.7-0.9-9.5c-0.6-0.7-1.1-1.3-1.6-1.8c-0.1,0.4-0.2,0.7-0.3,1.2 c-1.5-4.3-2.3-4.8-4.2-2.9c3.1,3.6,2.9,8.3,4.3,12.5c0.4-0.8,0.7-1.6,1.1-2.5c-0.1,0.1-0.3,0.2-0.4,0.2c1,2.1,2.1,4.1,3.1,6.2 c-0.1,0.1-0.2,0.3-0.4,0.4c-0.4-0.4-0.9-0.7-1.3-1.1c0,0.1-0.1,0.5-0.2,0.8c-2.3-0.5-3.3-2.5-3.3-4.2c0-1.9-1.1-2.7-2.1-3.8 c0.2-2.7-2-3.8-3.5-5.5c-0.7-0.8-1.2-1.6-2.5-1.2c-0.1,0-0.5-0.4-0.6-0.6c-0.2-0.9-2.3-3.3-2.9-3c-1.9,0.9-3.4-0.4-5-0.6 c-1.6-0.2-2.9-0.2-2.1-2.6c-0.2,0.1-0.4,0.1-0.6,0.2c-0.2,0.5-0.4,1.1-0.5,1.4c-0.8-0.5-1.6-1-2.6-1.6c-0.2,0.8-0.2,1.2-0.3,1.3 c-1-0.3-1.8-0.6-2.7-0.9c-0.1,0.3-0.2,0.9-0.2,1.1c-2-0.5-4.1-1.1-6.2-1.6c-0.1,0.2-0.2,0.4-0.2,0.5c2.4,0.6,3.3,4,6.5,3.2 c0.3,0.6,0.6,1.3,1,2.1c0.3-0.9,0.5-1.5,0.8-2.2c0.4,0.9,0.7,1.6,1.1,2.5c-3.5-0.6-7.4-0.2-9.6-4.2c-0.1,0.2-0.2,0.3-0.3,0.5 c0.5,0.6,1,1.2,1.5,1.8c-0.7,0.5-1.3,1-1.8,1.4c-0.9-0.6-1.5-1.1-2.4-1.7c0.1,0.7,0.1,1.2,0.1,1.7c-0.5-0.3-0.9-0.7-1.2-0.6 c-1.8,0.4-3.6,0.8-5.4,1.4c-0.5,0.2-0.9,0.7-1.3,1.1c0.4,0.4,0.8,0.9,1.2,1c0.8,0.2,1.7,0.1,2.6,0.2c-0.9,1.7-0.9,1.7,1.5,2.9 c0-0.5-0.1-1.1-0.1-1.6c1.3,0,2.4,0,3.5,0c-0.1-0.2-0.2-0.5-0.3-0.7c0.5-0.3,1-0.8,1.6-0.9c1.5-0.2,3,0.4,4.5-0.4 c0.7-0.4,1.8-0.3,2.6-0.6c1.8-0.8,3.4-0.3,4.2,1.5c0.1,0.1,0.4,0.1,0.7,0.2C291.4,321.1,291.6,321.2,291.7,321.4z M269.5,424.4 c-0.3,0.5-1.1,1.2-1.2,2c-0.3,2.5-0.5,4.9-0.5,7.4c0,2.1,0.3,4.2,0.3,6.3c0,2.6-0.2,5.2-0.4,7.8c0,0.4-0.3,0.9-0.6,1 c-0.3,0.1-1-0.1-1.2-0.4c-0.3-0.4-0.5-1-0.6-1.5c-0.4-2.3-0.5-4.7-1.1-7c-0.2-0.9-1.3-2.2-2-2.3c-1-0.1-2.5,0.7-2.9,1.5 c-0.7,1.4-0.9,3.2-1,4.9c-0.3,4.1,1.3,7.7,4.2,10.4c3.3,3.2,6.8,6.1,10.5,8.9c3.2,2.4,6.4,4.9,10.6,5.7c1.8,0.3,3.6,1.3,5.2-0.4 c0.2-0.3,0.9-0.1,1.4-0.2c1,0,1.9-0.1,2.9-0.1c1.9,0,4-0.3,5.7,0.4c1,0.4,1.9,0.9,2.8,0.5c4.3-1.9,8.8-3.4,12.6-6.1 c4-2.8,7.3-6.5,10.6-10.2c2-2.3,3.4-5.2,2.2-8.6c-0.1-0.3-0.1-0.8,0-1.2c0.7-1.6-0.3-2.5-1.5-2.8c-1.8-0.4-3.4,0.4-3.8,1.7 c-0.4,1.5-1.2,2.8-1.7,4.2c-0.4,1-1.2,2-1.2,3.1c0,2.4-1.6,3.9-2.9,5.5c-0.3,0.3-1.1,0.5-1.4,0.3c-0.9-0.5-1.1-3.5-0.8-4.1 c-0.6-1.4-1.1-2.5-1.7-3.8c-0.1,0.1-0.4,0.3-0.6,0.5c-0.6-0.9-1.2-1.7-1.7-2.6c-0.5-0.8-0.8-1.9-1.5-2.5c-0.6-0.6-1.6-0.7-3-1.1 c2.2-1.5,1.2-3,0.3-4c-0.9-1.1-2.4-1.8-3.6-2.7c0.2-0.2,0.7-0.7,1.2-1.2c-1.5-1.6-2.5-1.7-4.3,0.1c-0.1,0.1-0.3,0.3-0.4,0.3 c-2.2,0.5-4.4,1.2-6.6-0.3c-0.1-0.1-0.5,0.2-0.7,0.3c-0.9,0.4-1.7,1-2.6,1c-1.4,0.1-2.9-0.2-4.3-0.2c-0.2,0-0.6,0.4-0.7,0.7 c-0.3,0.5-0.5,1.1-0.6,1.4c0.3,2.2,0.6,4.3,0.8,6.5c-0.3,0.2-0.7,0.5-1.1,0.8c-2.4-3.4-1.7-8-4.2-11.1 C275.5,430.2,273.9,425.9,269.5,424.4z M255.9,372.6c-0.3,0-0.5,0-0.8,0.1c0.1,0.6,0.3,1.1,0.3,1.7c0.1,0.5,0.1,1.1,0,1.6 c-0.5,2.6-1.2,5.1-1.4,7.7c-0.1,1.4,0.5,3,2.3,3.5c-0.3,2.6,0.1,4.9,2.3,7.2c-0.5-4.2-1-8-1.5-11.9c-0.1,0-0.6,0-1.2,0.1 c0.1,0.6,0.2,1.2,0.3,1.7c0.1,0.5,0.3,1.1,0.4,1.7c-1.6-0.9-2.1-4.4-0.7-5.8c1-1,1.2-1.8,0.8-3.1 C256.3,375.5,256.2,374,255.9,372.6z M278.5,337.6c-2.6-1.3-3.3,1-4.7,1.5c-0.3,0.1-0.3,1-0.4,1.5c0.4,0.3,0.8,0.6,1.4,1.1 C276,340.4,277.2,339.1,278.5,337.6z M310.3,322.5c0.2-0.1,0.4-0.2,0.7-0.3c-0.1-0.9-0.3-1.8-0.3-2.3c-1.3-0.7-2.1-1.2-3.4-1.9 C308.4,319.8,309.3,321.2,310.3,322.5z M326.6,376.6c-0.2-0.1-0.4-0.2-0.6-0.3c-1.1,2-2.3,4.1-3.4,6.1c0.2,0.1,0.4,0.2,0.5,0.3 C324.3,380.7,325.4,378.6,326.6,376.6z M342,453.6c1.3,0.4,2.4,0.9,3.6,1.1c0.3,0.1,0.8-0.3,1.1-0.5c0.1,0-0.1-0.6-0.2-0.6 c-0.4-0.1-0.8,0-1.2,0c-0.8-0.1-1.6-0.3-2.4-0.4c0-0.2,0-0.4,0-0.6C342.7,452.9,342.4,453.1,342,453.6z",
      "M278.5,395.8c2.2,0.1,4.3-0.4,6.2,1c1.3,0.9,2.8,1.4,4.2,0c0.2-0.2,0.5-0.2,0.7-0.3c0.6-0.5,0.8,0.2,1.1,0.4 c1.6,0.6,3.4,0.8,5.3,1.3c0.4-1,0.9-2.4-0.3-3.8c-0.4-0.5-1.2-1.3-1.6-1.2c-1.8,0.4-2.3-0.7-2.9-1.9c-0.2-0.4-0.8-0.6-1-0.8 c0.1-2.6,0.1-5.1,0.4-7.5c0.3-2.7,0.8-5.4,1.7-8.1c0.9-2.4,2.4-4,3.9-5.8c0.2-0.2,0.1-0.7,0.2-1.2c-0.5,0.2-0.9,0.3-1.2,0.4 c-0.2-0.6-0.7-1.4-0.5-1.7c0.5-0.7,1.2-1.4,2-1.8c1.4-0.7,2.9-1.4,4.5-1.9c1.7-0.5,3.5-0.9,5.2-1.3c0.6-0.1,1.1-0.2,1.7-0.4 c2.6-0.9,3.8,1.1,5.2,2.5c1.2,1.3,2.2,2.8,3.1,4c-1,0.7-1.9,1.4-2.9,2.1c0-0.5,0.1-0.8,0.1-1.2c-1.1,0.3-2.2,0.7-3,0.9 c-0.1-0.9-0.1-2.3-0.3-2.3c-1.6-0.2-3.2-0.3-4.7-0.1c-2.9,0.3-5.4,1.7-7.6,3.4c-0.7,0.6-1.3,1.3-2,2c-0.8,0.8-0.6,1.4,0,2.3 c0.3,0.4,0,1.7-0.4,1.9c-1.4,0.8-1,2.1-1,3.2c0,1.1,0,2.2,0,3.4c-0.4-0.3-0.6-0.5-1.3-1c0.2,1.4,0.3,2.3,0.4,3.3 c0.8-0.7,1.4-1.2,2.5-2.1c0.3,2.4,0.5,4.4,0.7,6.3c0.1,0.8,0,1.6,0.3,2.3c0.6,2.1,1.5,4.2,2.1,6.4c0.6,2.1-0.7,3.7-2.8,3.9 c0,0-0.1,0.1-0.1,0.1c-1.2-1.7-3.2-1.3-4.9-1.5c-1-0.1-2-0.1-3-0.2c-1-0.1-2-0.2-3-0.4c-1.3-0.2-2.6-0.9-3.8-0.8 c-2.7,0.3-4.7-1.3-4.5-3.9c0.1-0.9-0.2-1.8-0.3-2.7c-0.1-1.4,0.4-2.3,1.9-2.6c0.4-0.1,1-0.5,1.1-0.8c0.3-0.8,0.2-1.8,0.5-2.6 c0.2-0.7,0.7-1.4,1-1.9c0.9,0.2,1.7,0.4,2.7,0.6c1.1,3.1-0.1,5.4-3.5,6C278.4,392.2,277.5,394,278.5,395.8z",
      "M272.6,380.5c-2.8-0.2-5.1-1.4-6.4-4.1c-0.2-0.5-0.3-1.5,0-1.7c1.6-1.1,3.3-2,4.9-3c0.1,0.2,0.2,0.3,0.3,0.5 c-0.8,0.5-1.5,1-2.3,1.5c0,0.1,0.1,0.2,0.1,0.3c0.4-0.1,0.7-0.2,1.1-0.2c1.4-0.3,2.9-0.6,4.3-0.9c0.7-0.2,1.3-0.6,2-0.6 c0.6,0,1.2,0.3,1.7,0.6c1.1,0.6,2.1,1.2,3.2,1.9c0.2-0.1,0.4-0.2,0.6-0.3c-0.2-1.2,0-2.9-0.7-3.5c-2.2-1.9-4.6-3.9-7.2-4.8 c-2.2-0.8-5-0.1-7.5,0c-0.3,0-0.8,0.4-0.9,0.7c-0.3,1.9-1.6,1-3.3,1.2c1.5-2.3,2.6-4.2,3.8-6c0.1-0.1,0.6,0,0.7-0.1 c2.4-2.3,4.1-2.5,7-0.9c1.3,0.7,2.8,0.9,4.2,1.5c1.3,0.5,2.8,0.9,3.7,1.9c1.3,1.4,0.6,3-0.6,4.6c2.1,0.3,3.1,1.3,3.5,3.4 c0.3,1.8,1.8,3.4-0.6,4.9c-0.8-0.7-1.7-1.4-2.7-2.3c0.1,0.7,0.2,1.2,0.3,1.7c-0.6,0.2-1.2,0.4-2.4,0.7c1.4,0.5,2.3,0.9,3.2,1.2 c-0.5,0.9-0.9,1.7-1,2c-2-0.1-3.9-0.1-5.7-0.2C274.8,380.7,273.6,380.6,272.6,380.5c2.4-0.4,5-0.6,7.1-2.5 c-0.4-0.2-0.6-0.4-0.8-0.4c-2.5-0.4-5.1-0.8-7.6-1c-0.4,0-0.9,0.6-1.2,1c-0.1,0.2,0.2,0.8,0.4,1 C271.1,379.3,271.8,379.9,272.6,380.5z",
      "M294.8,413.1c-0.7-0.8-1.2-1.6-1.3-1.5c-1.1,0.6-1.6,0-2.4-0.8c-0.4-0.4-1.3-0.4-2-0.5c-1.3-0.2-2.7-0.3-4-0.4 c-1.6-0.1-3.3-0.3-5.5-0.5c0.8,1.1,1.2,1.7,1.9,2.7c-1.1-0.3-2-0.3-2.6-0.7c-0.8-0.7-1.3-1.8-2.2-2.4c-0.7-0.4-1.7-0.3-2.9-0.4 c0.5-1,0.9-1.8,1.2-2.3c2.7,0,5.1,0,7.4,0c0.3,0,0.7,0,1,0c1.5,0.3,3,0.8,4.5,1c2.7,0.4,5.4,0.8,8.1,1c1.2,0.1,2.5-0.3,3.9-0.5 c-0.1-0.1,0,0.1,0.2,0.3c1.7,2.1,1.5,2.3-1.2,3.1C297.3,411.8,295.9,412.6,294.8,413.1z",
      "M292.6,415.9c-1.6,0.6-3.2,1.4-4.9,1.8c-0.9,0.2-2,1.4-3,0.1c-0.6-0.7-1-1.5-1.6-2.3c0.5-0.2,1-0.7,1.5-0.6 c2.6,0.2,5.2,0.4,7.8,0.7C292.4,415.7,292.5,415.8,292.6,415.9z",
      "M289.5,353.7c-1.2,0-2.6,0-3.9,0c1-0.7,2-1.4,3-2.1c-0.2-0.1-0.4-0.2-0.6-0.3c0.2-1.7,0.4-3.5,0.6-5.4 c0.8,1.6,1.1,3.1,0.4,4.7C288.7,351.4,289.3,352.4,289.5,353.7z",
      "M297.1,421.6c0.3-1.4,0.7-2.8,1-4c1.1-0.1,2.1-0.2,3-0.3c0.1,0.2,0.3,0.5,0.4,0.7c-1.3,1.3-2.7,2.6-4,3.9 C297.3,421.9,297.2,421.8,297.1,421.6z",
      "M305.4,415.9c-0.3-0.1-0.6-0.2-0.7-0.2c-0.5,1-1,2-1.4,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c0.9-2.2,1.8-4.4,2.7-6.6 C306.6,412.8,306.6,413.4,305.4,415.9C305.3,416,305.4,415.9,305.4,415.9z",
      "M290.3,475.8c1.7-1.3,3.3-0.8,4,1.4C293,476.7,291.7,476.3,290.3,475.8z",
      "M269.5,424.4c4.5,1.6,6.1,5.8,8.7,9c2.6,3.1,1.8,7.7,4.2,11.1c0.4-0.3,0.8-0.5,1.1-0.8 c-0.3-2.1-0.5-4.2-0.8-6.5c0.1-0.3,0.3-0.8,0.6-1.4c0.2-0.3,0.5-0.7,0.7-0.7c1.4,0,2.9,0.3,4.3,0.2c0.9-0.1,1.7-0.7,2.6-1 c0.2-0.1,0.6-0.4,0.7-0.3c2.1,1.4,4.4,0.8,6.6,0.3c0.2,0,0.3-0.2,0.4-0.3c1.8-1.8,2.8-1.8,4.3-0.1c-0.5,0.5-1,1-1.2,1.2 c1.2,0.9,2.7,1.6,3.6,2.7c0.8,1,1.9,2.5-0.3,4c1.4,0.5,2.4,0.6,3,1.1c0.7,0.6,1,1.7,1.5,2.5c0.5,0.9,1.1,1.7,1.7,2.6 c0.2-0.2,0.4-0.4,0.6-0.5c0.6,1.2,1.1,2.4,1.7,3.8c-0.4,0.5-0.1,3.5,0.8,4.1c0.3,0.2,1.2,0,1.4-0.3c1.3-1.6,2.9-3.1,2.9-5.5 c0-1,0.7-2,1.2-3.1c0.6-1.4,1.3-2.8,1.7-4.2c0.4-1.3,2-2.1,3.8-1.7c1.3,0.3,2.2,1.1,1.5,2.8c-0.1,0.3-0.1,0.8,0,1.2 c1.2,3.4-0.1,6.3-2.2,8.6c-3.2,3.7-6.6,7.4-10.6,10.2c-3.8,2.6-8.3,4.2-12.6,6.1c-0.9,0.4-1.8-0.1-2.8-0.5 c-1.6-0.7-3.8-0.3-5.7-0.4c-1,0-1.9,0-2.9,0.1c-0.5,0-1.1-0.1-1.4,0.2c-1.6,1.7-3.4,0.8-5.2,0.4c-4.1-0.7-7.4-3.3-10.6-5.7 c-3.7-2.7-7.2-5.7-10.5-8.9c-2.9-2.8-4.5-6.3-4.2-10.4c0.1-1.6,0.3-3.4,1-4.9c0.4-0.8,2-1.6,2.9-1.5c0.7,0.1,1.8,1.4,2,2.3 c0.6,2.3,0.7,4.7,1.1,7c0.1,0.5,0.3,1.1,0.6,1.5c0.2,0.3,0.8,0.5,1.2,0.4c0.3-0.1,0.6-0.6,0.6-1c0.2-2.6,0.4-5.2,0.4-7.8 c0-2.1-0.3-4.2-0.3-6.3c0-2.5,0.2-5,0.5-7.4C268.4,425.6,269.1,424.9,269.5,424.4z M300.1,457.3c0,0,0.3,0.2,0.3,0.3 c-0.4,1.7,1.2,1.7,1.7,1.4c0.8-0.5,2-1.8,1.8-2.3c-0.5-1.2,0.3-1.3,0.9-1.8c0.5-0.4,0.9-0.9,1.3-1.4c-0.3,0-0.5,0-0.8,0 c-0.3-0.3-0.6-0.7-0.6-0.7C303.3,454.2,301.7,455.7,300.1,457.3z M295.7,447.4c0.4,0.6,0.8,1.3,1.2,1.8c0.6-1.6,1.2-3.3,1.9-5.2 c0-0.4,0-1.3,0-2.2c-1-0.7-2.4-0.5-2.6,0.8c-0.1,0.9-1.4,2.8,0.5,3.1C296.5,446.1,296.1,446.7,295.7,447.4z M295.7,438.3 c0.5,0.8,1,1.6,1.4,2.3c2.3-0.4,2.4-0.9,0.6-4.1c0.3-0.1,0.6-0.3,1.2-0.5c-0.8-0.4-1.3-0.7-2.2-1.1c0.2,0.9,0.4,1.2,0.5,1.6 c-0.2-0.1-0.4-0.1-0.6-0.2C296.3,436.9,296,437.6,295.7,438.3z M278.5,455.6c0.1-0.2,0.3-0.3,0.4-0.5c-0.8-1-1.6-2-2.5-3.2 c-0.2,0.9-0.4,1.5-0.5,1.8C276.8,454.4,277.7,455,278.5,455.6z",
      "M291.3,320.9c-0.2-0.1-0.6-0.1-0.7-0.2c-0.8-1.8-2.4-2.3-4.2-1.5c-0.8,0.4-1.8,0.2-2.6,0.6 c-1.5,0.8-3,0.3-4.5,0.4c-0.5,0.1-1,0.6-1.6,0.9c0.1,0.2,0.2,0.5,0.3,0.7c-1.1,0-2.3,0-3.5,0c0,0.5,0.1,1.1,0.1,1.6 c-2.5-1.2-2.5-1.2-1.5-2.9c-0.9,0-1.8,0-2.6-0.2c-0.5-0.1-0.8-0.7-1.2-1c0.4-0.4,0.8-0.9,1.3-1.1c1.8-0.5,3.6-1,5.4-1.4 c0.3-0.1,0.7,0.4,1.2,0.6c0-0.6-0.1-1-0.1-1.7c0.9,0.6,1.6,1.1,2.4,1.7c0.5-0.4,1.1-0.9,1.8-1.4c-0.5-0.6-1-1.2-1.5-1.8 c0.1-0.2,0.2-0.3,0.3-0.5c2.2,4,6,3.6,9.6,4.2c-0.4-0.9-0.7-1.6-1.1-2.5c-0.3,0.7-0.5,1.3-0.8,2.2c-0.4-0.9-0.7-1.5-1-2.1 c-3.2,0.8-4.1-2.6-6.5-3.2c0.1-0.2,0.2-0.4,0.2-0.5c2.1,0.6,4.1,1.1,6.2,1.6c0-0.2,0.1-0.7,0.2-1.1c1,0.3,1.8,0.6,2.7,0.9 c0-0.1,0.1-0.5,0.3-1.3c1,0.6,1.8,1.2,2.6,1.6c0.1-0.4,0.3-0.9,0.5-1.4c0.2-0.1,0.4-0.1,0.6-0.2c-0.8,2.4,0.5,2.5,2.1,2.6 c1.7,0.2,3.1,1.5,5,0.6c0.6-0.3,2.7,2.2,2.9,3c0.1,0.2,0.4,0.6,0.6,0.6c1.2-0.4,1.7,0.4,2.5,1.2c1.5,1.7,3.7,2.8,3.5,5.5 c-0.2,0.3-0.3,0.6-0.5,0.8c-1.7-1.1-3.4-2.1-5-3.3c-0.7-0.6-0.7-1.8-1.3-2.5c-0.8-1-3.3-1.1-4.5-0.5c-0.2,0.1-0.5,0.1-0.7,0.1 c3.6,2.4,7.2,4.8,10.6,7.1c-0.5,2.9-0.9,5.4-1.3,8.1c0.2-0.1-0.2,0.1-0.8,0.4c-0.3-1.1-0.7-2.3-1.1-3.7c-0.6-0.5-1.7-1.4-2.9-2.3 c-1.4,2,2.8,2.3,2,4c-1.1,0.2-2.3,0.2-3.4,0.6c-1.5,0.5-2.6,0.3-3.5-1c-0.5,0.3-0.9,0.5-1.2,0.8c0-0.3,0.2-0.7,0.1-1 c-0.1-0.2-0.6-0.5-0.8-0.5c-0.6,0.2-1.2,0.6-1.8,0.5c-1,0-2,0-2.9,0c-1.4-0.1-2.8-0.1-4.1-0.4c-0.8-0.1-1.6-0.5-2.5-0.8 c-1.5-0.5-2.9-0.9-4.4-1.3c-1-0.3-1.2,0-1,0.8l0,0c-3.2,0-6,1.5-9,2.2c-1.1,0.3-1.5,1.6-1.4,3.2c0,0.4-0.5,1-0.9,1.2 c-0.3,0.2-0.9,0-1.3-0.2c-0.8-0.4-1.6-0.8-2.7-1.5c-0.9-2.7,0.6-4.7,3.6-5.8c-0.1-0.4-0.2-0.9-0.2-1.3c1,0.5,1.9,1,2.6,1.4 c1.5-1.1,2.7-1.9,3.9-2.8c0-0.2-0.1-0.3-0.1-0.5c-2.4,0.3-4.7,0.7-7.2,1c0.3,0.4,0.6,0.6,0.8,0.9c-0.3,0.2-0.5,0.3-0.9,0.6 c-0.6-0.8-1.1-1.6-1.8-2.7c-0.4,0-1.1,0-1.7,0c8,0.1,15.9-0.3,23.8-1.8c0-0.2-0.1-0.5-0.1-0.7c-0.6,0.2-1.2,0.4-1.8,0.6 c-0.1-0.1-0.2-0.2-0.3-0.3c0.4-0.4,0.8-0.8,1.3-1.2c0,0-0.3-0.3-0.5-0.5c0-0.2,0-0.3,0-0.5c1.6,0,3.2-0.1,4.8,0 c1,0.1,2,0.3,1.7-1.3c1,0.8,2,1.5,3,2.3c0.7-1.4,0.7-1.4,1.9-0.8c1.1,0.5,1.1,0.5,1.3-0.3c-1.2-0.6-2.3-1.2-3.4-1.7 c-0.8-0.3-1.5-0.7-2.3-0.9C291.6,319.9,290.8,319.8,291.3,320.9z M297.9,332.1c-1-0.7-1.9-1.2-2.6-2.3c-0.9-1.5-3-1-4.7-0.9 c-0.3,0-0.5,0.1-0.8,0.1c-1.2-0.2-2.4-0.4-3.6-0.7c0,0.2,0,0.3-0.1,0.5c0.9,0.2,1.8,0.3,2.7,0.5c0,0.2,0,0.4-0.1,0.5 c-0.7,0.1-1.3,0.2-2.3,0.3c1.7,0.6,3,1,4.6,1.5c-0.4-0.5-0.7-0.8-0.8-0.9c1.2,0,2.3,0,3.2,0C294.8,332.1,296.4,331.9,297.9,332.1z ",
      "M309.8,326.5c0.2-0.3,0.3-0.6,0.5-0.8c1,1.1,2.1,1.9,2.1,3.8c0,1.7,0.9,3.7,3.3,4.2 c0.1-0.3,0.2-0.7,0.2-0.8c0.4,0.3,0.8,0.7,1.3,1.1c0.1-0.1,0.2-0.3,0.4-0.4c-1-2.1-2.1-4.1-3.1-6.2c0.1-0.1,0.3-0.2,0.4-0.2 c-0.4,0.8-0.8,1.7-1.1,2.5c-1.4-4.2-1.2-8.9-4.3-12.5c1.9-1.9,2.7-1.4,4.2,2.9c0.1-0.5,0.2-0.8,0.3-1.2c0.5,0.6,1,1.1,1.6,1.8 c0.3,2.8,0.6,6.1,0.9,9.5c0.1,0,0.3,0,0.4,0c0.1-0.6,0.1-1.2,0.2-1.8c0.2,0,0.3,0,0.5,0c0.3,1.8,0.6,3.6,0.9,5.3 c0.1,0.3,0.1,0.6,0.2,0.9c0.7,1.9,0.5,2.1-1.5,1.9c-0.2,0.9-0.4,1.9-0.7,3c-2.5-1.6-3.8-4-5-6.4c-0.3-0.6-0.4-1.2-0.7-1.8 c-0.4-1-2.1-1.6-0.6-3.1C310.3,327.9,309.9,327,309.8,326.5z",
      "M255.9,372.6c0.3,1.4,0.4,2.9,0.8,4.3c0.4,1.3,0.2,2.1-0.8,3.1c-1.4,1.5-0.9,5,0.7,5.8 c-0.2-0.6-0.3-1.2-0.4-1.7c-0.1-0.5-0.2-1.1-0.3-1.7c0.6,0,1.1-0.1,1.2-0.1c0.5,3.9,1,7.7,1.5,11.9c-2.2-2.2-2.7-4.6-2.3-7.2 c-1.8-0.6-2.5-2.1-2.3-3.5c0.2-2.6,1-5.1,1.4-7.7c0.1-0.5,0.1-1.1,0-1.6c-0.1-0.6-0.2-1.1-0.3-1.7 C255.4,372.6,255.6,372.6,255.9,372.6z",
      "M278.5,337.6c-1.4,1.5-2.6,2.9-3.7,4.2c-0.6-0.5-1-0.8-1.4-1.1c0.1-0.5,0.1-1.4,0.4-1.5 C275.2,338.6,275.9,336.3,278.5,337.6z",
      "M279.3,331.4c0.8,0.1,1.5,0.2,2.3,0.3c0.6,0.1,1.2,0.3,1.7,0.9c-0.6,0.2-1.1,0.5-1.8,0.8 c0.7,0.4,1.2,0.8,2,1.4c-0.9-0.1-1.6,0.1-1.9-0.2c-1.6-1.5-3.5-1.5-5.6-1.4C277.1,332.6,278.2,332,279.3,331.4 C279.3,331.4,279.3,331.4,279.3,331.4z",
      "M291.3,320.9c-0.5-1.1,0.3-1,0.9-0.8c0.8,0.2,1.6,0.5,2.3,0.9c1.1,0.5,2.2,1.1,3.4,1.7c-0.2,0.8-0.2,0.8-1.3,0.3 c-1.2-0.6-1.2-0.6-1.9,0.8c-1-0.8-2-1.6-3-2.3C291.6,321.2,291.4,321.1,291.3,320.9z",
      "M310.3,322.5c-0.9-1.4-1.8-2.7-3.1-4.5c1.3,0.7,2.1,1.2,3.4,1.9c0.1,0.4,0.2,1.4,0.3,2.3 C310.7,322.3,310.5,322.4,310.3,322.5z",
      "M326.6,376.6c-1.1,2-2.3,4.1-3.4,6.1c-0.2-0.1-0.4-0.2-0.5-0.3c1.1-2,2.3-4.1,3.4-6.1 C326.2,376.4,326.4,376.5,326.6,376.6z",
      "M342,453.6c0.5-0.5,0.7-0.8,1-1c0,0.2,0,0.4,0,0.6c0.8,0.1,1.6,0.3,2.4,0.4c0.4,0,0.8,0,1.2,0 c0.1,0,0.2,0.6,0.2,0.6c-0.4,0.2-0.8,0.6-1.1,0.5C344.4,454.5,343.3,454.1,342,453.6z",
      "M272.6,380.5c-0.7-0.6-1.5-1.2-2.1-1.9c-0.3-0.3-0.5-0.8-0.4-1c0.3-0.4,0.8-1.1,1.2-1 c2.6,0.3,5.1,0.7,7.6,1c0.2,0,0.4,0.2,0.8,0.4C277.5,379.9,275,380.1,272.6,380.5C272.5,380.5,272.6,380.5,272.6,380.5z",
      "M300.1,457.3c1.6-1.6,3.2-3.1,4.6-4.4c0,0,0.3,0.3,0.6,0.7c0.3,0,0.5,0,0.8,0c-0.4,0.5-0.8,1-1.3,1.4 c-0.6,0.5-1.3,0.6-0.9,1.8c0.2,0.5-1,1.8-1.8,2.3c-0.5,0.3-2.1,0.3-1.7-1.4C300.4,457.5,300.1,457.3,300.1,457.3z",
      "M295.7,447.4c0.4-0.7,0.7-1.3,1-1.8c-1.9-0.3-0.7-2.2-0.5-3.1c0.2-1.3,1.6-1.5,2.6-0.8c0,0.9,0,1.8,0,2.2 c-0.7,2-1.3,3.6-1.9,5.2C296.5,448.7,296.1,448,295.7,447.4z",
      "M295.7,438.3c0.3-0.7,0.6-1.3,0.9-2c0.2,0.1,0.4,0.1,0.6,0.2c-0.1-0.4-0.2-0.8-0.5-1.6c0.9,0.5,1.5,0.8,2.2,1.1 c-0.6,0.2-0.9,0.4-1.2,0.5c1.8,3.2,1.7,3.7-0.6,4.1C296.7,439.8,296.2,439.1,295.7,438.3z",
      "M278.5,455.6c-0.8-0.6-1.6-1.2-2.6-1.9c0.1-0.3,0.2-0.9,0.5-1.8c1,1.2,1.8,2.2,2.5,3.2 C278.8,455.3,278.6,455.4,278.5,455.6z",
      "M297.9,332.1c-1.5-0.2-3.1,0-4.3-1.4c-0.9,0-2,0-3.2,0c0.1,0.1,0.4,0.4,0.8,0.9c-1.6-0.5-2.9-1-4.6-1.5 c1-0.1,1.6-0.2,2.3-0.3c0-0.2,0-0.4,0.1-0.5c-0.9-0.2-1.8-0.3-2.7-0.5c0-0.2,0-0.3,0.1-0.5c1.2,0.2,2.4,0.5,3.6,0.7 c0.2,0,0.5-0.1,0.8-0.1c1.7-0.1,3.7-0.6,4.7,0.9C296.1,330.9,296.9,331.4,297.9,332.1z",
      "M267.4,329.3c-0.2-0.2-0.4-0.5-0.8-0.9c2.4-0.3,4.8-0.7,7.2-1c0,0.2,0.1,0.3,0.1,0.5c-1.2,0.9-2.4,1.7-3.9,2.8 C269.3,330.3,268.3,329.8,267.4,329.3C267.4,329.3,267.4,329.3,267.4,329.3z"
    ]

    const list = []
    const allShape = []

    mapPath.forEach(path => {
      list.push(pasition.path2shapes(path))
    })

    list.forEach((shapes) => {
      shapes.forEach(shape => {
        shape.pathLen = 0
        shape.forEach((c, index) => {
          c.bzLen = getLength(c[0], c[1], c[2], c[3], c[4], c[5], c[6], c[7], 50)
          shape.pathLen += c.bzLen
        })
        allShape.push(shape)
      })
    })

    let startIndex = 0
    const pen = new Pen(allShape[startIndex], true, () => {
      startIndex++
      if (startIndex < allShape.length) {
        setTimeout(() => {
          pen.shape = allShape[startIndex]
          pen.start()
        }, 200)
      } else {
        pen.stop()
      }
    })

    pen.x = -360
    pen.y = -540
    pen.scaleX = pen.scaleY = 2
    stage.add(pen)

    Cax.tick(() => {
      pen.update()
      stage.update()
    })
  }

  componentDidShow() {
  }

  render() {

    return (
      <View style={{position: 'relative'}}>
        <cax id='myCanvas'></cax>
      </View>
    )
  }
}

需要注意的是,pen.js中的 import cax from 'cax'需要改为 import Cax from '@/lib/cax'

@miguo4
Copy link

miguo4 commented Dec 29, 2020

image
lib/cax/index.js会报以上的错误。你有遇到这个问题吗?

@brookyu
Copy link

brookyu commented Jun 6, 2022

taro引入cax有哪位大神搞定了吗?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants